結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー tj_0612tj_0612
提出日時 2016-11-18 22:42:55
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 717 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 21,760 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 17:56:21
合計ジャッジ時間 738 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 0 ms
5,376 KB
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 0 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 0 ms
5,376 KB
testcase_12 AC 0 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 0 ms
5,376 KB
testcase_15 AC 0 ms
5,376 KB
testcase_16 AC 0 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%s",A);
      |         ^~~~~~~~~~~~~
main.c:8:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         scanf("%s",B);
      |         ^~~~~~~~~~~~~

ソースコード

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(a!=0)
			aflag=1;
		else if(aflag==0&&i!=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(b!=0)
			bflag=1;
		else if(bflag==0&&i!=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