結果

問題 No.2374 ASKT Subsequences
ユーザー titiatitia
提出日時 2023-07-11 02:54:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 84,732 KB
最終ジャッジ日時 2024-09-12 23:56:17
合計ジャッジ時間 7,165 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
66,196 KB
testcase_01 AC 53 ms
65,436 KB
testcase_02 AC 51 ms
65,972 KB
testcase_03 AC 54 ms
66,860 KB
testcase_04 AC 59 ms
69,632 KB
testcase_05 AC 54 ms
66,032 KB
testcase_06 AC 55 ms
68,088 KB
testcase_07 AC 80 ms
76,320 KB
testcase_08 AC 71 ms
76,032 KB
testcase_09 AC 78 ms
76,400 KB
testcase_10 AC 86 ms
76,392 KB
testcase_11 AC 150 ms
77,572 KB
testcase_12 AC 120 ms
77,124 KB
testcase_13 AC 104 ms
76,224 KB
testcase_14 AC 159 ms
77,916 KB
testcase_15 AC 177 ms
77,540 KB
testcase_16 AC 160 ms
77,656 KB
testcase_17 AC 175 ms
77,404 KB
testcase_18 AC 244 ms
78,416 KB
testcase_19 AC 224 ms
78,108 KB
testcase_20 AC 398 ms
81,292 KB
testcase_21 AC 353 ms
80,840 KB
testcase_22 AC 431 ms
81,332 KB
testcase_23 AC 243 ms
78,776 KB
testcase_24 AC 255 ms
78,336 KB
testcase_25 AC 178 ms
78,196 KB
testcase_26 AC 484 ms
83,816 KB
testcase_27 AC 204 ms
82,300 KB
testcase_28 AC 307 ms
84,732 KB
testcase_29 AC 243 ms
82,820 KB
testcase_30 AC 307 ms
84,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

LIST=[[] for i in range(2001)]

for i in range(N):
    LIST[A[i]].append(i)

ANS=0

for k in range(1,2001):
    DP=[[0,0,0] for i in range(N)]
    for i in range(N):
        a=A[i]

        if 1<=a+k+10<=2000:
            for j in LIST[a+k+10]:
                if j>i:
                    DP[j][1]+=1

        if 1<=a-k<=2000:
            if DP[i][1]!=0:
                for j in LIST[a-k]:
                    if j>i:
                        DP[j][2]+=DP[i][1]

        if 1<=a+k+1<=2000:
            if DP[i][2]!=0:
                for j in LIST[a+k+1]:
                    if j>i:
                        ANS+=DP[i][2]

print(ANS)
0