結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー tj_0612tj_0612
提出日時 2016-11-18 23:10:05
言語 C90
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 668 bytes
コンパイル時間 860 ms
コンパイル使用メモリ 24,844 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-17 11:41:28
合計ジャッジ時間 1,642 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
4,380 KB
testcase_01 AC 0 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 0 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 0 ms
4,376 KB
testcase_07 AC 0 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 0 ms
4,376 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 WA -
testcase_14 AC 0 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	char A[5],B[5];
	scanf("%s",A);
	scanf("%s",B);
	
	int a,b,aflag,bflag;
	int alen,blen;
	alen = strlen(A);
	blen = strlen(B);
	int i;
	for(i=0;i<alen;i++){
		a=A[i]-'0';
		if(a<0||a>9){
			printf("NG\n");
			return 0;
			break;
		}
		if(alen != 1 && a == 0){
			printf("NG\n");
			return 0;
			break;
		}
	}
		for(i=0;i<blen;i++){
		b=B[i]-'0';
		if(b<0||b>9){
			printf("NG\n");
			return 0;
			break;
		}
		if(blen != 1 && b==0){
			printf("NG\n");
			return 0;
			break;
		}
	}
	a = atoi(A);
	b = atoi(B);
	if(a>12345||b>12345){
		printf("NG\n");
		return 0;
	}
	printf("OK\n");

	return 0;
}
0