結果

問題 No.1366 交換門松列・梅
ユーザー 𖧱𖦸𖥩𖥣𖥩𖥣𖧱𖦸𖥩𖥣𖥩𖥣
提出日時 2024-05-08 12:02:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-08 12:02:30
合計ジャッジ時間 1,239 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 WA -
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 31 ms
11,008 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 WA -
testcase_12 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
la = list(map(int,input().split()))
lb = list(map(int,input().split()))
c = False
for i in range(3):
	LA = copy.copy(la)
	LB = copy.copy(lb)
	LA[i] = lb[i]
	LB[i] = la[i]
	if (LA[0] != LA[1] != LA[2] != LA[0]) and ((LA[0] < LA[1] > LA[2]) or (LA[0] > LA[1] < LA[2])):
		if (LB[0] != LB[1] != LB[2] != LB[0]) and ((LB[0] < LB[1] > LB[2]) or (LB[0] > LB[1] < LB[2])):
			c = True
if c:
	print("Yes")
else:
	print("No")
0