結果
| 問題 | No.1915 Addition |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-01 12:03:38 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 163 bytes |
| 記録 | |
| コンパイル時間 | 238 ms |
| コンパイル使用メモリ | 39,280 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-06-25 22:29:10 |
| 合計ジャッジ時間 | 1,505 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 10 |
ソースコード
#include<cstdio>
int main(){
int N;
scanf("%d", &N);
long long M = N;
while(N){
N /= 10;
M *= 10;
}
printf("%lld\n", M);
}