結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 0 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 0 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 0 ms
5,376 KB
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 AC 1 ms
5,376 KB
testcase_14 AC 0 ms
5,376 KB
testcase_15 AC 0 ms
5,376 KB
testcase_16 AC 0 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 0 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1 ms
5,376 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 0 ms
5,376 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\n");
	//printf("1");
	}
}else if(b[0]>b[1]){
	
	printf("YES\n");
}else if(a[0]>a[1]){
	printf("YES");
}else{
	printf("NO\n");
}
	return 0;
}
0