結果

問題 No.2374 ASKT Subsequences
ユーザー miya145592miya145592
提出日時 2023-07-07 22:10:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 718 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 83,536 KB
最終ジャッジ日時 2024-07-21 18:14:42
合計ジャッジ時間 8,070 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,796 KB
testcase_01 AC 37 ms
53,572 KB
testcase_02 AC 36 ms
53,716 KB
testcase_03 AC 37 ms
52,768 KB
testcase_04 AC 37 ms
53,084 KB
testcase_05 AC 41 ms
52,824 KB
testcase_06 AC 37 ms
52,628 KB
testcase_07 AC 36 ms
53,416 KB
testcase_08 AC 36 ms
52,476 KB
testcase_09 AC 36 ms
52,760 KB
testcase_10 AC 44 ms
62,240 KB
testcase_11 AC 66 ms
74,612 KB
testcase_12 AC 54 ms
66,696 KB
testcase_13 AC 53 ms
64,972 KB
testcase_14 AC 88 ms
76,504 KB
testcase_15 AC 111 ms
76,732 KB
testcase_16 AC 76 ms
76,212 KB
testcase_17 AC 96 ms
76,564 KB
testcase_18 AC 125 ms
76,364 KB
testcase_19 AC 113 ms
76,380 KB
testcase_20 AC 141 ms
76,808 KB
testcase_21 AC 164 ms
76,988 KB
testcase_22 AC 149 ms
76,936 KB
testcase_23 AC 132 ms
76,464 KB
testcase_24 AC 123 ms
76,856 KB
testcase_25 AC 1,662 ms
76,900 KB
testcase_26 AC 248 ms
77,080 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

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

D = dict()
for i in range(1, N):
    if A[i] not in D:
        D[A[i]] = [i]
    else:
        D[A[i]].append(i)

ans = 0
for i2 in range(1, N):
    a2 = A[i2]
    for i1 in range(i2):
        a1 = A[i1]
        k = a2-a1-10
        if k<=0:
            continue
        
        a3 = a2-k
        if a3 not in D:
            continue
        pos = bisect.bisect_left(D[a3], i2+1)
        if pos==N:
            continue
        a4 = a3+k+1
        if a4 not in D:
            continue
        for j in range(pos, len(D[a3])):
            i3 = D[a3][j]
            pos2 = bisect.bisect_left(D[a4], i3+1)
            ans += len(D[a4])-pos2
print(ans)
0