結果

問題 No.360 増加門松列
ユーザー 👑 KazunKazun
提出日時 2021-02-10 23:25:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-08 10:40:17
合計ジャッジ時間 2,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
69,760 KB
testcase_01 AC 61 ms
70,272 KB
testcase_02 AC 74 ms
76,032 KB
testcase_03 AC 60 ms
70,272 KB
testcase_04 AC 64 ms
69,760 KB
testcase_05 AC 69 ms
70,144 KB
testcase_06 AC 62 ms
69,888 KB
testcase_07 AC 62 ms
70,272 KB
testcase_08 AC 57 ms
69,888 KB
testcase_09 AC 54 ms
69,376 KB
testcase_10 AC 71 ms
75,904 KB
testcase_11 AC 53 ms
66,816 KB
testcase_12 AC 58 ms
70,016 KB
testcase_13 AC 68 ms
73,856 KB
testcase_14 AC 67 ms
74,752 KB
testcase_15 AC 38 ms
59,648 KB
testcase_16 AC 51 ms
66,304 KB
testcase_17 AC 77 ms
76,416 KB
testcase_18 AC 57 ms
70,400 KB
testcase_19 AC 58 ms
70,272 KB
testcase_20 AC 57 ms
69,376 KB
testcase_21 AC 59 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_kaimatsu(a,b,c):
    if a==b or b==c or c==a:
        return False
    return (a>b<c) or (a<b>c)

from itertools import permutations
D=list(map(int,input().split()))
N=7

F=0
for t in permutations(D):
    G=1
    for i in range(5):
        if not (is_kaimatsu(t[i],t[i+1],t[i+2]) and t[i]<t[i+2]):
            G=0
    F|=G

print("YES" if F else "NO")
0