結果

問題 No.2374 ASKT Subsequences
ユーザー poyonpoyon
提出日時 2023-06-16 18:53:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-06-29 22:34:48
合計ジャッジ時間 3,970 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 41 ms
57,356 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 46 ms
57,728 KB
testcase_04 AC 47 ms
59,904 KB
testcase_05 AC 41 ms
57,344 KB
testcase_06 AC 42 ms
57,472 KB
testcase_07 AC 58 ms
71,552 KB
testcase_08 AC 60 ms
72,960 KB
testcase_09 AC 57 ms
72,448 KB
testcase_10 AC 72 ms
75,944 KB
testcase_11 AC 65 ms
75,996 KB
testcase_12 AC 63 ms
76,160 KB
testcase_13 AC 65 ms
75,980 KB
testcase_14 AC 70 ms
76,040 KB
testcase_15 AC 72 ms
75,888 KB
testcase_16 AC 67 ms
75,904 KB
testcase_17 AC 86 ms
76,288 KB
testcase_18 AC 92 ms
76,032 KB
testcase_19 AC 91 ms
75,748 KB
testcase_20 AC 141 ms
77,060 KB
testcase_21 AC 145 ms
77,064 KB
testcase_22 AC 130 ms
77,312 KB
testcase_23 AC 89 ms
75,832 KB
testcase_24 AC 92 ms
76,124 KB
testcase_25 AC 47 ms
60,800 KB
testcase_26 AC 168 ms
77,088 KB
testcase_27 AC 122 ms
77,120 KB
testcase_28 AC 54 ms
65,988 KB
testcase_29 AC 151 ms
76,896 KB
testcase_30 AC 96 ms
76,560 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