結果

問題 No.2374 ASKT Subsequences
ユーザー yabityabit
提出日時 2023-07-11 11:32:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 108,276 KB
最終ジャッジ日時 2024-09-13 02:27:11
合計ジャッジ時間 5,758 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,088 KB
testcase_01 AC 41 ms
53,548 KB
testcase_02 AC 39 ms
52,580 KB
testcase_03 AC 38 ms
53,764 KB
testcase_04 AC 39 ms
52,632 KB
testcase_05 WA -
testcase_06 AC 38 ms
52,740 KB
testcase_07 AC 38 ms
53,264 KB
testcase_08 WA -
testcase_09 AC 38 ms
53,568 KB
testcase_10 WA -
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 179 ms
80,124 KB
testcase_26 WA -
testcase_27 AC 835 ms
95,000 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
N = int(input())
A = list(map(int, input().split()))
K = [[] for _ in range(N)]
for i in range(N):
    for j in range(i+1,N):
        if A[i]+10 == A[j]:
            K[i].append(j)
T = []
ans = 0
for i in range(N):
    T += K[i]
    T.sort()
    for j in range(i+1,N):
        if A[i]+1 == A[j]:
            l = bisect_right(T, i)
            r = bisect_left(T, j)
            ans += r-l
print(ans)
0