結果

問題 No.2374 ASKT Subsequences
ユーザー miya145592miya145592
提出日時 2023-07-07 22:40:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 682 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,176 KB
最終ジャッジ日時 2024-07-21 18:56:22
合計ジャッジ時間 8,295 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,600 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 41 ms
51,584 KB
testcase_07 AC 42 ms
52,224 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 AC 63 ms
64,640 KB
testcase_12 AC 54 ms
60,800 KB
testcase_13 AC 42 ms
52,096 KB
testcase_14 AC 82 ms
72,064 KB
testcase_15 AC 94 ms
76,212 KB
testcase_16 AC 72 ms
67,712 KB
testcase_17 AC 93 ms
75,776 KB
testcase_18 AC 102 ms
76,288 KB
testcase_19 AC 103 ms
76,160 KB
testcase_20 AC 106 ms
76,400 KB
testcase_21 AC 120 ms
76,800 KB
testcase_22 AC 110 ms
76,420 KB
testcase_23 AC 102 ms
76,160 KB
testcase_24 AC 101 ms
76,032 KB
testcase_25 TLE -
testcase_26 AC 159 ms
76,928 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 i1 in range(N):
    a1 = A[i1]
    a3 = a1+10
    if a3 not in D:
        continue
    pos = bisect.bisect_left(D[a3], i1+2)
    for j in range(pos, len(D[a3])):
        i3 = D[a3][j]
        for i2 in range(i1+1, i3):
            a2 = A[i2]
            k = a2-a1-10
            if k<=0:
                continue
            a4 = a3+k+1
            if a4 not in D:
                continue
            pos2 = bisect.bisect_left(D[a4], i3+1)
            ans += len(D[a4])-pos2

print(ans)
0