結果

問題 No.2374 ASKT Subsequences
ユーザー tamatotamato
提出日時 2023-07-07 22:22:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 724 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 77,240 KB
最終ジャッジ日時 2024-07-21 18:29:13
合計ジャッジ時間 3,546 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,724 KB
testcase_01 AC 36 ms
53,164 KB
testcase_02 AC 39 ms
52,400 KB
testcase_03 AC 39 ms
52,768 KB
testcase_04 WA -
testcase_05 AC 37 ms
53,560 KB
testcase_06 AC 38 ms
53,224 KB
testcase_07 WA -
testcase_08 AC 36 ms
54,592 KB
testcase_09 WA -
testcase_10 AC 55 ms
69,408 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 72 ms
76,032 KB
testcase_26 WA -
testcase_27 AC 134 ms
76,532 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
mod = 998244353

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

ans = 0
for i in range(N):
    prev = [0] * 2001
    X = [0] * 2001
    S = [0] * 2001
    B = [0] * N
    for j in range(i+1, N):
        if A[j] == A[i] + 10:
            B[j] = B[j - 1] + 1
        else:
            B[j] = B[j - 1]

        if A[j] > A[i] + 11:
            b = B[prev[A[j] - 1]]
            prev[A[j] - 1] = B[j]
            S[A[j] - 1] += X[A[j] - 1] * (B[j] - b)
            ans += S[A[j] - 1]
            S[A[j] - 1] = 0

        if A[j] > A[i] + 10:
            b = B[prev[A[j]]]
            prev[A[j]] = B[j]
            S[A[j]] += X[A[j]] * (B[j] - b)
            X[A[j]] += 1

print(ans)
0