結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー KudeKude
提出日時 2021-01-29 21:39:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 106,368 KB
最終ジャッジ日時 2024-06-27 07:50:49
合計ジャッジ時間 3,261 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 245 ms
78,244 KB
testcase_03 AC 164 ms
77,664 KB
testcase_04 AC 153 ms
77,208 KB
testcase_05 AC 109 ms
106,240 KB
testcase_06 AC 111 ms
106,368 KB
testcase_07 AC 92 ms
106,176 KB
testcase_08 AC 118 ms
106,240 KB
testcase_09 AC 169 ms
104,064 KB
testcase_10 AC 168 ms
104,136 KB
testcase_11 AC 176 ms
104,624 KB
testcase_12 AC 173 ms
104,372 KB
testcase_13 AC 173 ms
104,328 KB
testcase_14 AC 177 ms
104,356 KB
testcase_15 AC 168 ms
104,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n = int(input())
    a = list(map(int, input().split()))
    a.append(a[0])
    a.append(a[1])
    ans = 0
    for k in range(3):
        dp = [0, 0, 0]
        for i in range(k, n - 2 + k):
            if a[i] != a[i+2] and (a[i+1] > max(a[i], a[i+2]) or a[i+1] < min(a[i], a[i+2])):
                dp = [
                    max(dp[0], dp[1]),
                    dp[2],
                    dp[0] + a[i]
                ]
            else:
                dp = [
                    max(dp[0], dp[1]),
                    dp[2],
                    0
                ]
        ans = max(ans, *dp)
    print(ans)
0