結果

問題 No.360 増加門松列
ユーザー rlangevinrlangevin
提出日時 2023-02-05 11:15:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 71,424 KB
最終ジャッジ日時 2024-07-04 02:02:33
合計ジャッジ時間 2,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
66,432 KB
testcase_01 AC 64 ms
69,888 KB
testcase_02 AC 64 ms
68,864 KB
testcase_03 AC 71 ms
71,424 KB
testcase_04 AC 58 ms
66,176 KB
testcase_05 AC 58 ms
66,048 KB
testcase_06 AC 61 ms
68,096 KB
testcase_07 AC 58 ms
65,920 KB
testcase_08 AC 59 ms
67,584 KB
testcase_09 AC 57 ms
65,280 KB
testcase_10 AC 67 ms
70,144 KB
testcase_11 AC 67 ms
71,296 KB
testcase_12 AC 63 ms
68,736 KB
testcase_13 AC 64 ms
69,376 KB
testcase_14 AC 66 ms
70,400 KB
testcase_15 AC 43 ms
59,008 KB
testcase_16 AC 70 ms
71,168 KB
testcase_17 AC 58 ms
65,920 KB
testcase_18 AC 57 ms
65,536 KB
testcase_19 AC 61 ms
68,096 KB
testcase_20 AC 54 ms
64,512 KB
testcase_21 AC 60 ms
68,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *

def kadomatsu(a, b, c):
    if a <= c:
        return False
    for i in [-1, 1]:
        if a * i < b * i and b * i > c * i and a != c:
            return True
    return False

D = list(map(int, input().split()))
ans = "NO"
for tup in permutations(D):
    for i in range(5):
        if not kadomatsu(tup[i], tup[i + 1], tup[i + 2]):
            break
    else:
        ans = "YES"
print(ans)
0