結果

問題 No.1366 交換門松列・梅
ユーザー 310icecrystal310icecrystal
提出日時 2023-07-05 06:23:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 325 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 53,584 KB
最終ジャッジ日時 2024-12-16 13:21:50
合計ジャッジ時間 1,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,680 KB
testcase_01 AC 32 ms
52,588 KB
testcase_02 AC 37 ms
52,064 KB
testcase_03 AC 32 ms
53,584 KB
testcase_04 AC 31 ms
52,732 KB
testcase_05 AC 33 ms
52,956 KB
testcase_06 AC 34 ms
53,008 KB
testcase_07 AC 32 ms
52,940 KB
testcase_08 AC 31 ms
52,536 KB
testcase_09 AC 33 ms
52,320 KB
testcase_10 AC 33 ms
52,528 KB
testcase_11 AC 33 ms
52,756 KB
testcase_12 AC 34 ms
53,164 KB
testcase_13 AC 34 ms
52,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = list(map(int,input().split()))
b = list(map(int,input().split()))

def is_kado(li):
	if len(set(li)) == 3 and li[1] in {max(li),min(li)}:
		return True
	else:
		return False

for i in range(3):
	for j in range(3):
		if is_kado(a[:i]+[b[j]]+a[i+1:]) and is_kado(b[:j]+[a[i]]+b[j+1:]):
			print("Yes")
			exit()
print("No")
0