結果

問題 No.2374 ASKT Subsequences
ユーザー とろちゃとろちゃ
提出日時 2023-07-07 22:27:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,160 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 113,280 KB
最終ジャッジ日時 2024-07-21 18:35:55
合計ジャッジ時間 13,578 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
63,872 KB
testcase_01 AC 44 ms
58,752 KB
testcase_02 AC 46 ms
58,496 KB
testcase_03 AC 43 ms
58,496 KB
testcase_04 AC 43 ms
58,368 KB
testcase_05 AC 43 ms
58,112 KB
testcase_06 AC 44 ms
58,624 KB
testcase_07 AC 50 ms
61,824 KB
testcase_08 AC 47 ms
59,904 KB
testcase_09 AC 48 ms
60,800 KB
testcase_10 AC 56 ms
64,256 KB
testcase_11 AC 76 ms
71,808 KB
testcase_12 AC 66 ms
67,968 KB
testcase_13 AC 55 ms
64,640 KB
testcase_14 AC 84 ms
73,600 KB
testcase_15 AC 124 ms
83,712 KB
testcase_16 AC 71 ms
70,408 KB
testcase_17 AC 157 ms
85,504 KB
testcase_18 AC 448 ms
90,752 KB
testcase_19 AC 368 ms
89,984 KB
testcase_20 AC 810 ms
97,280 KB
testcase_21 AC 998 ms
99,712 KB
testcase_22 AC 570 ms
94,976 KB
testcase_23 AC 453 ms
91,520 KB
testcase_24 AC 456 ms
91,520 KB
testcase_25 AC 474 ms
91,520 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,290 ms
108,032 KB
testcase_29 TLE -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit;pypyjit.set_param("max_unroll_recursion=-1")
# from bisect import *
# from collections import *
# from heapq import *
# from itertools import *
# from math import *
# from datetime import *
# from decimal import *  # PyPyだと遅い
# from string import ascii_lowercase,ascii_uppercase
# import numpy as np
import sys

# import os

# sys.setrecursionlimit(10**6) # PyPyだと遅い
# INF = 10**18
# MOD = 998244353
# MOD = 10**9 + 7
# isFile = os.path.exists("input.txt")
File = sys.stdin


def input():
    return File.readline()[:-1]


# ///////////////////////////////////////////////////////////////////////////


N = int(input())
A = list(map(int, input().split()))
countList = [[0] * 2001 for _ in range(N)]

for i in range(-1, -N - 1, -1):
    for j in range(2001):
        countList[i][j] = countList[i + 1][j]
    countList[i][A[i]] += 1

ans = 0
for i in range(N):
    for j in range(i + 1, N):
        diff = A[j] - A[i] - 10
        if diff <= 0:
            continue
        for k in range(j + 1, N):
            if A[k] == A[j] - diff and A[k] + diff + 1 < 2001:
                ans += countList[k][A[k] + diff + 1]

print(ans)
0