結果

問題 No.2374 ASKT Subsequences
ユーザー ニックネームニックネーム
提出日時 2023-07-07 23:33:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 77,600 KB
最終ジャッジ日時 2024-07-21 19:57:10
合計ジャッジ時間 4,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,272 KB
testcase_01 AC 42 ms
58,048 KB
testcase_02 AC 43 ms
58,048 KB
testcase_03 AC 42 ms
57,660 KB
testcase_04 AC 43 ms
58,272 KB
testcase_05 AC 41 ms
57,456 KB
testcase_06 AC 41 ms
57,648 KB
testcase_07 AC 44 ms
58,416 KB
testcase_08 AC 42 ms
57,840 KB
testcase_09 AC 43 ms
59,136 KB
testcase_10 AC 61 ms
66,540 KB
testcase_11 AC 116 ms
76,968 KB
testcase_12 AC 74 ms
71,208 KB
testcase_13 AC 69 ms
69,724 KB
testcase_14 AC 121 ms
76,640 KB
testcase_15 AC 121 ms
76,520 KB
testcase_16 AC 107 ms
76,464 KB
testcase_17 AC 121 ms
76,832 KB
testcase_18 AC 160 ms
76,932 KB
testcase_19 AC 165 ms
77,400 KB
testcase_20 AC 186 ms
76,804 KB
testcase_21 AC 207 ms
76,924 KB
testcase_22 AC 179 ms
76,888 KB
testcase_23 AC 161 ms
76,596 KB
testcase_24 AC 165 ms
76,948 KB
testcase_25 AC 90 ms
75,924 KB
testcase_26 AC 326 ms
77,600 KB
testcase_27 AC 154 ms
76,408 KB
testcase_28 AC 262 ms
76,668 KB
testcase_29 AC 68 ms
63,192 KB
testcase_30 AC 205 ms
76,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left,bisect_right
n = int(input())
a = list(map(int,input().split()))
b = [[] for _ in range(2001)]
for i,v in enumerate(a): b[v].append(i)
ans = 0
for i in range(n-1):
    for j in range(i+1,n):
        p = a[j]-10; q = a[i]+1; k = a[i]-p-10
        if 1<=p<=2000>=q>=1<=k: ans += bisect_left(b[p],i)*(len(b[q])-bisect_right(b[q],j))
print(ans)
0