結果

問題 No.138 化石のバージョン
ユーザー HaijinnHaijinn
提出日時 2016-11-13 15:43:46
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 20,480 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 11:24:52
合計ジャッジ時間 1,013 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
6,944 KB
testcase_05 WA -
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 0 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 0 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 0 ms
6,944 KB
testcase_16 AC 0 ms
6,940 KB
testcase_17 WA -
testcase_18 AC 1 ms
6,940 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
6,944 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 0 ms
6,944 KB
testcase_34 AC 0 ms
6,940 KB
testcase_35 AC 0 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:15:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |         scanf("%d %d %d",&a[i],&b[i],&c[i]);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(void)
{
int a[100];
int b[100];
int c[100];
int i;
int a1;
int a2;
int a3;


for(i=0;i<2;i++){
	scanf("%d %d %d",&a[i],&b[i],&c[i]);
}
if(c[0]>c[1]){
	if((b[0]>b[1])||a[0]>a[1]){
	printf("YES");
	//printf("1");
	}
}else if(b[0]>b[1]){
	
	printf("YES");
}else if(a[0]>a[1]){
	printf("YES");
}else{
	printf("NO");
}
	return 0;
}
0