結果

問題 No.2374 ASKT Subsequences
ユーザー miya145592miya145592
提出日時 2023-07-07 23:08:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 751 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 81,712 KB
最終ジャッジ日時 2024-07-21 19:32:22
合計ジャッジ時間 5,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,216 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 42 ms
52,264 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 42 ms
52,736 KB
testcase_05 AC 43 ms
52,096 KB
testcase_06 AC 42 ms
52,608 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 AC 42 ms
52,480 KB
testcase_11 AC 51 ms
60,672 KB
testcase_12 AC 44 ms
52,352 KB
testcase_13 AC 43 ms
51,840 KB
testcase_14 AC 59 ms
61,952 KB
testcase_15 AC 58 ms
62,592 KB
testcase_16 AC 57 ms
61,824 KB
testcase_17 AC 59 ms
62,080 KB
testcase_18 AC 61 ms
63,104 KB
testcase_19 AC 62 ms
63,360 KB
testcase_20 AC 64 ms
64,896 KB
testcase_21 AC 71 ms
66,176 KB
testcase_22 AC 62 ms
64,768 KB
testcase_23 AC 59 ms
63,440 KB
testcase_24 AC 58 ms
62,976 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import itertools

N = int(input())
A = list(map(int, input().split()))

D = dict()
for i in range(N):
    if A[i] not in D:
        D[A[i]] = [i]
    else:
        D[A[i]].append(i)

ans = 0
a1a3 = []
for a1 in D.keys():
    a3 = a1+10
    if a3 not in D:
        continue
    for i1 in D[a1]:
        for i3 in D[a3]:
            if i1+2<=i3:
                a1a3.append((i1, i3))

a2a4 = []
for a2 in D.keys():
    a4 = a2+1
    if a4 not in D:
        continue
    for i2 in D[a2]:
        for i4 in D[a4]:
            if i2+2<=i4:
                a2a4.append((i2, i4))

for i1, i3 in a1a3:
    for i2, i4 in a2a4:
        k = A[i2]-A[i1]-10
        if k<=0:
            continue
        if i1<i2<i3<i4:
            ans+=1

print(ans)
0