結果
| 問題 | No.1366 交換門松列・梅 |
| コンテスト | |
| ユーザー |
nephrologist
|
| 提出日時 | 2021-01-29 21:24:19 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 418 bytes |
| 記録 | |
| コンパイル時間 | 239 ms |
| コンパイル使用メモリ | 95,596 KB |
| 実行使用メモリ | 78,592 KB |
| 最終ジャッジ日時 | 2026-07-31 01:54:31 |
| 合計ジャッジ時間 | 2,297 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 WA * 5 |
ソースコード
def check(A):
a, b, c = A
if b > c and b > a:
return True
if b < c and b < a:
return True
return False
A = list(map(int, input().split()))
B = list(map(int, input().split()))
for i in range(3):
for j in range(3):
AA = A[::]
BB = B[::]
AA[i], BB[j] = BB[j], AA[i]
if check(AA) and check(BB):
print("Yes")
exit()
print("No")
nephrologist