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