結果

問題 No.2374 ASKT Subsequences
ユーザー ntudantuda
提出日時 2023-07-09 11:59:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 524 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 334,300 KB
最終ジャッジ日時 2024-07-23 08:59:37
合計ジャッジ時間 12,411 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
60,292 KB
testcase_01 AC 38 ms
58,516 KB
testcase_02 AC 37 ms
53,420 KB
testcase_03 AC 42 ms
60,204 KB
testcase_04 AC 45 ms
63,268 KB
testcase_05 AC 41 ms
59,796 KB
testcase_06 AC 40 ms
59,380 KB
testcase_07 AC 91 ms
77,440 KB
testcase_08 AC 80 ms
76,852 KB
testcase_09 AC 83 ms
77,272 KB
testcase_10 AC 218 ms
128,160 KB
testcase_11 AC 188 ms
127,836 KB
testcase_12 AC 134 ms
94,244 KB
testcase_13 AC 129 ms
90,376 KB
testcase_14 AC 260 ms
178,800 KB
testcase_15 AC 341 ms
250,272 KB
testcase_16 AC 214 ms
145,604 KB
testcase_17 AC 1,385 ms
292,036 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
maxa = max(A)
dp = [[0] * (maxa + 1) for _ in range(N + 1)]
dp[0][0] = 1

ans = 0
for k in range(1, maxa):
    dp = [[0] * (maxa + 1) for _ in range(N + 1)]
    dp[0][0] = 1
    for a in A:
        dp[1][a] += dp[0][0]
        if 0 < a - k - 10 <= maxa:
            dp[2][a] += dp[1][a - k - 10]
        if 0 < a + k <= maxa:
            dp[3][a] += dp[2][a + k]
        if 0 < a - k - 1 <= maxa:
            dp[4][a] += dp[3][a - k - 1]
    ans += sum(dp[4])
print(ans)
0