結果

問題 No.360 増加門松列
ユーザー lloyzlloyz
提出日時 2023-10-17 00:18:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 76,468 KB
最終ジャッジ日時 2024-09-16 23:56:30
合計ジャッジ時間 2,701 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
76,236 KB
testcase_01 AC 72 ms
76,096 KB
testcase_02 AC 46 ms
61,284 KB
testcase_03 AC 38 ms
52,956 KB
testcase_04 AC 75 ms
76,016 KB
testcase_05 AC 73 ms
76,300 KB
testcase_06 AC 86 ms
76,428 KB
testcase_07 AC 72 ms
76,144 KB
testcase_08 AC 78 ms
76,108 KB
testcase_09 AC 77 ms
76,320 KB
testcase_10 AC 60 ms
68,876 KB
testcase_11 AC 43 ms
59,376 KB
testcase_12 AC 76 ms
76,468 KB
testcase_13 AC 51 ms
63,816 KB
testcase_14 AC 50 ms
62,628 KB
testcase_15 AC 55 ms
71,180 KB
testcase_16 AC 39 ms
53,952 KB
testcase_17 AC 52 ms
63,536 KB
testcase_18 AC 76 ms
76,440 KB
testcase_19 AC 75 ms
76,188 KB
testcase_20 AC 77 ms
76,344 KB
testcase_21 AC 75 ms
76,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

def check_kadomatsu(A):
    is_kadomatsu = True
    for i in range(3):
        if A[i] == A[(i + 1) % 3]:
            is_kadomatsu = False
    if not (A[0] < A[1] > A[2] or A[0] > A[1] < A[2]):
        is_kadomatsu = False
    return is_kadomatsu

D = list(map(int, input().split()))
for P in permutations(range(7)):
    A = [D[P[i]] for i in range(7)]
    flag = True
    for i in range(5):
        B = A[i:i + 3]
        if not check_kadomatsu(B):
            flag = False
            break
        if B[0] > B[2]:
            flag = False
            break
    if flag:
        print("YES")
        exit()
print("NO")
0