結果

問題 No.1366 交換門松列・梅
ユーザー 310icecrystal310icecrystal
提出日時 2023-07-05 06:21:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 53,804 KB
最終ジャッジ日時 2024-07-19 00:46:06
合計ジャッジ時間 1,553 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
52,064 KB
testcase_04 AC 38 ms
52,052 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 37 ms
52,608 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 37 ms
52,188 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 38 ms
51,968 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]]+a[j+1:]):
			print("Yes")
			exit()
print("No")
0