Submission #71653
ソースコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #include<bits/stdc++.h> using namespace std; #define endl "\n" #define ll long long #define fix(ans,x) fixed << setprecision(x)<<(double)ans #define total(n) n*(n+1)/2 #define ser(i, set) for(auto i = set.begin(); i != set.end(); i++) #define tupin(a, b, c) tie(a, b, c) #define INM INT_MAX int sod( int n){ int sex = 0; while (n != 0){ sex += n % 10; n /= 10; } return (sex); } int main(){ int n; cin>>n; string zero = "000000000000000" ; cout<<n*5<<zero<<endl; return 0; } |
ステータス
項目 | データ |
---|---|
問題 | 0787 - Forest King Out |
ユーザー名 | ei2132 |
投稿日時 | 2022-08-04 11:31:05 |
言語 | C++17 |
状態 | Accepted |
得点 | 5 |
ソースコード長 | 551 Byte |
最大実行時間 | 31 ms |
最大メモリ使用量 | 576 KB |
セット
セット | 得点 | Cases | |
---|---|---|---|
1 | 森鴎外!! | 5 / 5 | * |
テストケース
ファイル名 | 状態 | 実行時間 | メモリ使用量 | # |
---|---|---|---|---|
Input01 | AC | 25 ms | 476 KB |
1
|
Input02 | AC | 18 ms | 576 KB |
1
|
Input03 | AC | 21 ms | 544 KB |
1
|
Input04 | AC | 31 ms | 516 KB |
1
|
Input05 | AC | 16 ms | 480 KB |
1
|