結果
| 問題 |
No.552 十分簡単な星1の問題
|
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-07 15:56:12 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 160 bytes |
| コンパイル時間 | 546 ms |
| コンパイル使用メモリ | 24,576 KB |
| 実行使用メモリ | 8,608 KB |
| 最終ジャッジ日時 | 2025-03-07 15:56:15 |
| 合計ジャッジ時間 | 2,452 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 46 WA * 1 |
ソースコード
#include <stdio.h>
void main(void){
char num[100] = "a";
int input = scanf("%s",num);
if(input == 2){
printf("入力ミス\n");
}
printf("%s0\n",num);
}
Maeda