結果

問題 No.1366 交換門松列・梅
ユーザー convexineqconvexineq
提出日時 2021-01-30 08:17:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 377 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 53,744 KB
最終ジャッジ日時 2024-12-16 13:18:13
合計ジャッジ時間 1,458 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,276 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 39 ms
52,624 KB
testcase_03 AC 38 ms
52,216 KB
testcase_04 AC 38 ms
53,496 KB
testcase_05 AC 39 ms
52,696 KB
testcase_06 AC 39 ms
53,072 KB
testcase_07 AC 40 ms
52,292 KB
testcase_08 AC 39 ms
51,876 KB
testcase_09 AC 39 ms
52,804 KB
testcase_10 AC 39 ms
53,044 KB
testcase_11 AC 39 ms
51,948 KB
testcase_12 AC 39 ms
53,744 KB
testcase_13 AC 39 ms
52,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_kadomatsu(a,b,c):
    if a==b or b==c or a==c or a+b+c-max(a,b,c)-min(a,b,c)==b:
        return False
    return True

*a, = map(int,input().split())
*b, = map(int,input().split())
ok = 0
for i in range(3):
    for j in range(3):
        a[i],b[j] = b[j],a[i]
        ok |= is_kadomatsu(*a) and is_kadomatsu(*b)
        a[i],b[j] = b[j],a[i]
print("Yes" if ok else "No")
0