結果

問題 No.360 増加門松列
ユーザー AEnAEn
提出日時 2022-11-26 17:33:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 76,700 KB
最終ジャッジ日時 2024-10-03 01:33:09
合計ジャッジ時間 2,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
76,184 KB
testcase_01 AC 76 ms
76,152 KB
testcase_02 AC 61 ms
70,384 KB
testcase_03 AC 45 ms
59,064 KB
testcase_04 AC 76 ms
76,700 KB
testcase_05 AC 76 ms
76,192 KB
testcase_06 AC 76 ms
76,068 KB
testcase_07 AC 75 ms
76,492 KB
testcase_08 AC 77 ms
76,092 KB
testcase_09 AC 73 ms
76,080 KB
testcase_10 AC 71 ms
76,168 KB
testcase_11 AC 47 ms
62,532 KB
testcase_12 AC 77 ms
76,180 KB
testcase_13 AC 63 ms
71,576 KB
testcase_14 AC 63 ms
71,900 KB
testcase_15 AC 49 ms
68,992 KB
testcase_16 AC 45 ms
59,512 KB
testcase_17 AC 60 ms
69,944 KB
testcase_18 AC 74 ms
76,100 KB
testcase_19 AC 77 ms
76,256 KB
testcase_20 AC 74 ms
76,068 KB
testcase_21 AC 80 ms
76,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

D = list(map(int, input().split()))

for v in permutations(range(7),7):
    cnt = 0
    for i in range(5):
        a = [D[v[i]],D[v[i+1]],D[v[i+2]]]
        if len(set(a))!=3:continue
        if max(a)!=D[v[i+1]] and min(a)!=D[v[i+1]]:continue
        if D[v[i]]>=D[v[i+2]]:continue
        cnt += 1
    if cnt==5:
        exit(print('YES'))
print('NO')
0