結果

問題 No.1366 交換門松列・梅
コンテスト
ユーザー hiragn
提出日時 2022-11-07 18:16:10
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 94 ms / 1,000 ms
+ 536µs
コード長 481 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 290 ms
コンパイル使用メモリ 21,408 KB
実行使用メモリ 15,868 KB
最終ジャッジ日時 2026-07-12 13:06:03
合計ジャッジ時間 2,900 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import itertools


def is_kadomatsu(lst):
    return len(set(lst)) == 3 and (lst[1] == max(lst) or lst[1] == min(lst))


def main():
    a = list(map(int, input().split()))
    b = list(map(int, input().split()))

    for i, j in itertools.product(range(3), repeat=2):
        a[i], b[j] = b[j], a[i]
        if is_kadomatsu(a) and is_kadomatsu(b):
            print("Yes")
            return
        a[i], b[j] = b[j], a[i]
    print("No")


if __name__ == "__main__":
    main()
0