結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー HaijinnHaijinn
提出日時 2016-12-18 21:03:13
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 649 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 21,376 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 06:46:08
合計ジャッジ時間 861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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


int main(void){
	char a[10000];
	char b[10000];
	int ab;
	int ba;
	int i;
	int m;
	int v;
	int d;
	int s=0;
	int p=0;
	scanf("%s%s",a,b);
v=strlen(a);
	d=strlen(b);
	for(i=0;i<v;i++){
	if(a[i] >= '0' && a[i] <= '9'){
		s++;
	
	}
		}
	
		for(m=0;m<d;m++){
	if(b[m] >= '0' && b[m] <= '9'){
		s++;
		
	}
		}
		ab=atoi(a);
		ba=atoi(b);
		if(ab>12345&&ba>12345){
			p++;
		}
		/*ab baの桁数を図るプログラムをここに作成。不要な0が入っていないかを図るプログラムを作成する*/
		
		if(s==v+d&&p<=0){
			printf("OK\n");
			
			
		}else{
			printf("NG\n");
		}
	
	return 0;
}
0