結果

問題 No.360 増加門松列
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-14 02:45:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-06-26 05:03:13
合計ジャッジ時間 3,381 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
77,056 KB
testcase_01 AC 104 ms
77,184 KB
testcase_02 AC 104 ms
77,312 KB
testcase_03 AC 109 ms
77,056 KB
testcase_04 AC 103 ms
77,184 KB
testcase_05 AC 102 ms
77,056 KB
testcase_06 AC 109 ms
77,184 KB
testcase_07 AC 101 ms
77,056 KB
testcase_08 AC 106 ms
77,056 KB
testcase_09 AC 106 ms
77,184 KB
testcase_10 AC 97 ms
76,800 KB
testcase_11 AC 97 ms
77,184 KB
testcase_12 AC 106 ms
77,056 KB
testcase_13 AC 101 ms
76,800 KB
testcase_14 AC 99 ms
76,800 KB
testcase_15 AC 60 ms
65,792 KB
testcase_16 AC 99 ms
76,800 KB
testcase_17 AC 122 ms
77,824 KB
testcase_18 AC 109 ms
77,056 KB
testcase_19 AC 109 ms
77,184 KB
testcase_20 AC 108 ms
77,056 KB
testcase_21 AC 109 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
D=list(map(int,input().split()))
list.sort(D)
def isok(x):
    if x[0]==x[1] or x[1]==x[2] or x[0]==x[2]:
        return False
    if x[0]>x[1] and x[1]<x[2]:
        return True
    if x[0]<x[1] and x[1]>x[2]:
        return True
    return False
ans=False
pat=list(itertools.permutations(D))
for p in pat:
    ret=True
    for i in range(5):
        ret&=isok(p[i:i+3])
    for i in range(5):
        ret&=p[i]<p[i+2]
    ans|=ret
if ans:
    print('YES')
else:
    print('NO')
0