結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー tj_0612
提出日時 2016-11-18 23:10:05
言語 C90
(gcc 12.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 668 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 21,120 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-26 08:02:17
合計ジャッジ時間 816 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 12 WA * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
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(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