結果

問題 No.552 十分簡単な星1の問題
ユーザー Maeda
提出日時 2025-03-07 15:59:05
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 24,960 KB
実行使用メモリ 8,608 KB
最終ジャッジ日時 2025-03-07 15:59:07
合計ジャッジ時間 2,049 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string.h>

void main(void){
	char num[100] = "a";
	int input = scanf("%s",num);
	if(input == 2){
		printf("入力ミス\n");
	}
	if(strcmp(num,"0") != 0){
		printf("%s",num);
	}
	printf("0\n");
}
0