結果
| 問題 | No.552 十分簡単な星1の問題 |
| コンテスト | |
| ユーザー |
Naoki00712
|
| 提出日時 | 2023-05-31 17:40:58 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 144 bytes |
| 記録 | |
| コンパイル時間 | 144 ms |
| コンパイル使用メモリ | 34,628 KB |
| 最終ジャッジ日時 | 2026-02-22 10:35:28 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 46 WA * 1 |
ソースコード
#include <stdio.h>
int main()
{
char n[21];
scanf("%s", &n);
if (n != 0)
{
printf("%s0", n);
}
else
{
printf("0");
}
return 0;
}
Naoki00712