結果

問題 No.2121 帰属関係と充足可能性
ユーザー 👑 ygussanyygussany
提出日時 2022-11-04 22:04:41
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 946 ms
コンパイル使用メモリ 27,364 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-26 00:29:32
合計ジャッジ時間 2,602 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 0 ms
4,376 KB
testcase_03 AC 0 ms
4,380 KB
testcase_04 AC 0 ms
4,380 KB
testcase_05 AC 0 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 0 ms
4,380 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 0 ms
4,376 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 0 ms
4,380 KB
testcase_18 AC 0 ms
4,376 KB
testcase_19 AC 0 ms
4,380 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 0 ms
4,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1 ms
4,380 KB
testcase_26 WA -
testcase_27 AC 1 ms
4,376 KB
testcase_28 AC 0 ms
4,380 KB
testcase_29 AC 0 ms
4,376 KB
testcase_30 AC 0 ms
4,500 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 0 ms
4,376 KB
testcase_38 WA -
testcase_39 AC 0 ms
4,376 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 1 ms
4,376 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 1 ms
4,376 KB
testcase_47 WA -
testcase_48 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main()
{
	int i, N, A[6];
	scanf("%d", &N);
	for (i = 0; i < 6; i++) scanf("%d", &(A[i]));
	if (A[1] == A[2] || A[2] == A[3] || A[2] == A[4] || A[0] == A[5] || N == 0) printf("NO\n");
	else printf("YES\n");
	fflush(stdout);
	return 0;
}
0