結果

問題 No.2374 ASKT Subsequences
ユーザー poyonpoyon
提出日時 2023-06-16 19:19:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 578 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 141,696 KB
最終ジャッジ日時 2024-06-29 22:35:10
合計ジャッジ時間 6,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
56,832 KB
testcase_01 AC 44 ms
62,080 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 42 ms
66,816 KB
testcase_04 AC 44 ms
68,352 KB
testcase_05 AC 42 ms
67,456 KB
testcase_06 AC 44 ms
66,304 KB
testcase_07 AC 74 ms
76,288 KB
testcase_08 AC 77 ms
76,780 KB
testcase_09 AC 77 ms
76,416 KB
testcase_10 AC 151 ms
83,456 KB
testcase_11 AC 87 ms
76,672 KB
testcase_12 AC 81 ms
76,800 KB
testcase_13 AC 80 ms
76,544 KB
testcase_14 AC 84 ms
76,272 KB
testcase_15 AC 88 ms
76,544 KB
testcase_16 AC 83 ms
76,704 KB
testcase_17 AC 157 ms
83,652 KB
testcase_18 AC 173 ms
82,368 KB
testcase_19 AC 190 ms
84,076 KB
testcase_20 AC 530 ms
141,696 KB
testcase_21 AC 569 ms
141,176 KB
testcase_22 AC 491 ms
131,328 KB
testcase_23 AC 177 ms
83,128 KB
testcase_24 AC 179 ms
83,328 KB
testcase_25 AC 43 ms
61,564 KB
testcase_26 AC 578 ms
132,896 KB
testcase_27 AC 542 ms
125,312 KB
testcase_28 AC 50 ms
68,192 KB
testcase_29 AC 498 ms
126,804 KB
testcase_30 AC 122 ms
78,124 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[x][j] := (A[0] 〜 A[i-1] まで見て、) x = a1 であって、
        #             あさかつ型の部分列の j 番目まで決めた場合の数
        # dp = [[0] * 4 for _ in range(MAX_A + 1)]
        dp = [[0 for i in range(4)] for j in range(MAX_A + 1)]  # kanten さんのやつ
        for a in A:
            x = a - k - 11
            if 1 <= x: dp[x][3] += dp[x][2]

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

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

            dp[a][0] += 1

        for x in range(1, MAX_A + 1):
            ans += dp[x][3]

    print(ans)


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