結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,432 KB
testcase_01 AC 38 ms
52,676 KB
testcase_02 AC 39 ms
52,896 KB
testcase_03 AC 38 ms
53,084 KB
testcase_04 AC 38 ms
53,756 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,888 KB
testcase_07 AC 40 ms
53,152 KB
testcase_08 WA -
testcase_09 AC 39 ms
52,768 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 178 ms
80,192 KB
testcase_26 WA -
testcase_27 AC 835 ms
94,704 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):
    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(i,j,l,r,ans)
    T += K[i]
    T.sort()
print(ans)
0