結果

問題 No.1366 交換門松列・梅
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-22 00:10:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 1,000 ms
コード長 303 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 53,540 KB
最終ジャッジ日時 2024-12-16 13:22:53
合計ジャッジ時間 1,556 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,132 KB
testcase_01 AC 33 ms
52,348 KB
testcase_02 AC 33 ms
52,748 KB
testcase_03 AC 34 ms
52,828 KB
testcase_04 AC 33 ms
52,192 KB
testcase_05 AC 33 ms
52,016 KB
testcase_06 AC 32 ms
53,048 KB
testcase_07 AC 33 ms
53,540 KB
testcase_08 AC 32 ms
52,680 KB
testcase_09 AC 33 ms
52,580 KB
testcase_10 AC 33 ms
52,208 KB
testcase_11 AC 33 ms
51,996 KB
testcase_12 AC 34 ms
52,408 KB
testcase_13 AC 32 ms
51,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=list(map(int,input().split()))
b=list(map(int,input().split()))
for i in range(3):
	for j in range(3):
		a[i],b[j]=b[j],a[i]
		if len(set(a))==3 and len(set(b))==3:
			if max(a)==a[1] or min(a)==a[1]:
				if max(b)==b[1] or min(b)==b[1]:
					print("Yes")
					exit()
		a[i],b[j]=b[j],a[i]
print("No")
0