結果

問題 No.2374 ASKT Subsequences
ユーザー poyonpoyon
提出日時 2023-06-20 22:08:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,352 KB
最終ジャッジ日時 2024-06-29 22:37:55
合計ジャッジ時間 3,139 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,556 KB
testcase_01 AC 36 ms
57,604 KB
testcase_02 AC 37 ms
52,944 KB
testcase_03 AC 40 ms
58,160 KB
testcase_04 AC 40 ms
61,128 KB
testcase_05 AC 35 ms
59,024 KB
testcase_06 AC 36 ms
58,060 KB
testcase_07 AC 54 ms
72,384 KB
testcase_08 AC 52 ms
73,616 KB
testcase_09 AC 55 ms
73,348 KB
testcase_10 AC 68 ms
75,876 KB
testcase_11 AC 60 ms
75,532 KB
testcase_12 AC 56 ms
75,736 KB
testcase_13 AC 57 ms
76,332 KB
testcase_14 AC 62 ms
75,680 KB
testcase_15 AC 65 ms
75,928 KB
testcase_16 AC 59 ms
75,680 KB
testcase_17 AC 75 ms
76,140 KB
testcase_18 AC 80 ms
76,056 KB
testcase_19 AC 81 ms
75,764 KB
testcase_20 AC 129 ms
77,352 KB
testcase_21 AC 133 ms
77,136 KB
testcase_22 AC 124 ms
76,972 KB
testcase_23 AC 81 ms
76,420 KB
testcase_24 AC 82 ms
75,688 KB
testcase_25 AC 42 ms
61,524 KB
testcase_26 AC 149 ms
77,292 KB
testcase_27 AC 117 ms
76,932 KB
testcase_28 AC 49 ms
67,052 KB
testcase_29 AC 139 ms
77,016 KB
testcase_30 AC 85 ms
76,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline


def main():
    N = int(input())
    A = list(map(int, input().split()))

    ans = 0
    MAX_A = max(A)
    for k in range(1, MAX_A + 1):
        # dp[j][x] := (A[0] 〜 A[i-1] まで見て、) x = a1 であって、
        #             あさかつ型の部分列の j 番目まで決めた場合の数
        dp = [[0] * (MAX_A + 1) for _ in range(4)]
        for a in A:
            x = a - k - 11
            if 1 <= x: dp[3][x] += dp[2][x]

            y = a - 10
            if 1 <= y: dp[2][y] += dp[1][y]

            z = a - k - 10
            if 1 <= z: dp[1][z] += dp[0][z]

            dp[0][a] += 1

        ans += sum(dp[3])

    print(ans)


if __name__ == "__main__":
    main()
0