結果

問題 No.2374 ASKT Subsequences
ユーザー flygonflygon
提出日時 2023-07-07 22:09:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 81,832 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-07-21 18:11:58
合計ジャッジ時間 4,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
62,464 KB
testcase_01 AC 53 ms
62,208 KB
testcase_02 AC 52 ms
62,592 KB
testcase_03 AC 53 ms
62,464 KB
testcase_04 AC 51 ms
62,900 KB
testcase_05 AC 52 ms
62,592 KB
testcase_06 AC 57 ms
62,720 KB
testcase_07 AC 53 ms
63,104 KB
testcase_08 AC 52 ms
63,232 KB
testcase_09 AC 53 ms
62,848 KB
testcase_10 AC 61 ms
67,200 KB
testcase_11 AC 72 ms
71,680 KB
testcase_12 AC 66 ms
67,584 KB
testcase_13 AC 65 ms
67,200 KB
testcase_14 AC 83 ms
73,472 KB
testcase_15 AC 83 ms
73,984 KB
testcase_16 AC 75 ms
70,272 KB
testcase_17 AC 102 ms
86,656 KB
testcase_18 AC 116 ms
89,856 KB
testcase_19 AC 114 ms
89,984 KB
testcase_20 AC 136 ms
89,472 KB
testcase_21 AC 144 ms
89,856 KB
testcase_22 AC 125 ms
89,472 KB
testcase_23 AC 116 ms
89,728 KB
testcase_24 AC 116 ms
89,856 KB
testcase_25 AC 104 ms
89,856 KB
testcase_26 AC 195 ms
108,416 KB
testcase_27 AC 151 ms
108,160 KB
testcase_28 AC 171 ms
108,032 KB
testcase_29 AC 124 ms
90,112 KB
testcase_30 AC 157 ms
108,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
a = list(map(int,input().split()))

cnt = [[0]*(n) for i in range(2010)]
for i in range(n):
    cnt[a[i]][i] = 1


for i in range(2010):
    for j in range(1,n):
        cnt[i][j] += cnt[i][j-1]
ans = 0
for a2 in range(1, n):
    for a3 in range(a2+1, n-1):
        k = a[a2] - a[a3]
        if k <= 0: continue
        a1 = a[a3] - 10 
        a4 = a[a2] + 1
        if not(1<= a1 <= 2000 and 1<= a4 <= 2000): continue
        ans += cnt[a1][a2-1] * (cnt[a4][-1] - cnt[a4][a3])

print(ans)
0