結果

問題 No.2374 ASKT Subsequences
ユーザー ntudantuda
提出日時 2023-07-08 01:15:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 81,920 KB
最終ジャッジ日時 2024-07-21 21:33:42
合計ジャッジ時間 8,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,240 KB
testcase_01 AC 42 ms
54,544 KB
testcase_02 AC 42 ms
55,320 KB
testcase_03 AC 42 ms
54,304 KB
testcase_04 AC 42 ms
54,240 KB
testcase_05 AC 42 ms
54,480 KB
testcase_06 AC 43 ms
55,056 KB
testcase_07 AC 45 ms
54,516 KB
testcase_08 AC 43 ms
54,552 KB
testcase_09 AC 42 ms
55,424 KB
testcase_10 AC 50 ms
63,104 KB
testcase_11 AC 73 ms
72,704 KB
testcase_12 WA -
testcase_13 AC 52 ms
62,976 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 86 ms
76,372 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 TLE -
testcase_26 WA -
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
N = int(input())
A = list(map(int,input().split()))
from collections import defaultdict
dic = defaultdict(list)
for i,a in enumerate(A):
    dic[a].append(i)
ans = 0
for i in range(N - 3):
    a = A[i]
    for j in range(i + 1,N - 2):
        b = A[j]
        if b - a < 10:
            continue
        if dic[a+10]:
            for k in dic[a + 10]:
                if i < j < k:
                    if dic[b + 1]:
                        ans += len(dic[b + 1]) - bisect_left(dic[b + 1],k)

print(ans)
0