結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,984 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 42 ms
52,352 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 40 ms
52,468 KB
testcase_11 AC 50 ms
61,440 KB
testcase_12 AC 40 ms
52,480 KB
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 53 ms
63,576 KB
testcase_15 AC 55 ms
63,360 KB
testcase_16 AC 51 ms
61,056 KB
testcase_17 AC 56 ms
63,232 KB
testcase_18 AC 58 ms
63,836 KB
testcase_19 AC 59 ms
64,512 KB
testcase_20 AC 69 ms
66,176 KB
testcase_21 AC 70 ms
68,224 KB
testcase_22 AC 63 ms
65,536 KB
testcase_23 AC 68 ms
66,176 KB
testcase_24 AC 63 ms
65,024 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 = set()
for a1 in D.keys():
    a3 = a1+10
    if a3 not in D:
        continue
    for p in itertools.product(D[a1], D[a3]):
        if p[0]>=p[1]:
            continue
        a1a3.add(p)

a2a4 = set()
for a2 in D.keys():
    a4 = a2+1
    if a4 not in D:
        continue
    for p in itertools.product(D[a2], D[a4]):
        if p[0]>=p[1]:
            continue
        a2a4.add(p)

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