結果

問題 No.360 増加門松列
ユーザー roarisroaris
提出日時 2019-08-28 19:38:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 76,020 KB
最終ジャッジ日時 2024-11-17 16:28:30
合計ジャッジ時間 2,405 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
73,088 KB
testcase_01 AC 67 ms
74,544 KB
testcase_02 AC 48 ms
59,648 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 70 ms
74,112 KB
testcase_05 AC 64 ms
71,168 KB
testcase_06 AC 73 ms
73,984 KB
testcase_07 AC 65 ms
72,192 KB
testcase_08 AC 64 ms
71,680 KB
testcase_09 AC 63 ms
71,424 KB
testcase_10 AC 57 ms
65,792 KB
testcase_11 AC 46 ms
57,088 KB
testcase_12 AC 72 ms
76,020 KB
testcase_13 AC 50 ms
60,672 KB
testcase_14 AC 50 ms
61,184 KB
testcase_15 AC 53 ms
65,152 KB
testcase_16 AC 42 ms
51,968 KB
testcase_17 AC 49 ms
60,416 KB
testcase_18 AC 68 ms
73,472 KB
testcase_19 AC 74 ms
75,776 KB
testcase_20 AC 61 ms
70,656 KB
testcase_21 AC 64 ms
72,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

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

for l in permutations(D):
    for i in range(5):
        sub_l = [l[i], l[i+1], l[i+2]]
        
        if l[i+1] in [min(sub_l), max(sub_l)] and l[i] < l[i+2] and 3 == len(set(sub_l)):
            continue
        else:
            break
    else:
        print('YES')
        break
else:
    print('NO')
0