結果

問題 No.446 ゆきこーだーの雨と雪 (1)
コンテスト
ユーザー Mcpu3
提出日時 2018-06-19 17:40:10
言語 C(gnu17)
(gcc 15.2.0)
コンパイル:
gcc-15 -O2 -std=gnu17 -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=incompatible-pointer-types -Wno-error=int-conversion -DONLINE_JUDGE -o a.out _filename_ -lm
実行:
./a.out
結果
WA  
実行時間 -
コード長 304 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 63 ms
コンパイル使用メモリ 36,608 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2026-07-21 21:37:20
合計ジャッジ時間 1,359 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 11 WA * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:8:9: warning: implicit declaration of function 'gets'; did you mean 'fgets'? [-Wimplicit-function-declaration]
    8 |         gets(a);
      |         ^~~~
      |         fgets
/usr/bin/ld: /tmp/ccP1aBS3.o: in function `main':
main.c:(.text.startup+0x13): 警告: the `gets' function is dangerous and should not be used.

ソースコード

diff #
raw source code

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
	char a[6],b[6];
	int i;
	gets(a);
	gets(b);
	for(i=0;a[i]!='\0';i++)if(a[i]<'0'||'9'<a[i])goto A;
	for(i=0;b[i]!='\0';i++)if(b[i]<'0'||'9'<b[i])goto A;
	if(atoi(a)>12345||atoi(b)>12345)goto A;
	puts("OK");
	return 0;
	A:
	puts("NG");
	return 0;
}
0