結果

問題 No.2374 ASKT Subsequences
ユーザー とろちゃとろちゃ
提出日時 2023-07-07 22:23:38
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,180 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 114,968 KB
最終ジャッジ日時 2024-07-21 18:31:09
合計ジャッジ時間 13,511 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
64,256 KB
testcase_01 AC 45 ms
58,368 KB
testcase_02 AC 47 ms
58,368 KB
testcase_03 AC 45 ms
58,112 KB
testcase_04 AC 46 ms
58,368 KB
testcase_05 AC 47 ms
58,496 KB
testcase_06 AC 47 ms
58,624 KB
testcase_07 AC 52 ms
61,824 KB
testcase_08 AC 51 ms
59,648 KB
testcase_09 AC 48 ms
60,672 KB
testcase_10 AC 53 ms
64,512 KB
testcase_11 AC 77 ms
72,192 KB
testcase_12 AC 66 ms
67,840 KB
testcase_13 AC 59 ms
64,640 KB
testcase_14 AC 91 ms
73,472 KB
testcase_15 AC 134 ms
83,456 KB
testcase_16 AC 71 ms
70,528 KB
testcase_17 AC 156 ms
86,072 KB
testcase_18 AC 441 ms
90,880 KB
testcase_19 AC 365 ms
90,368 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 AC 546 ms
94,976 KB
testcase_23 AC 437 ms
92,032 KB
testcase_24 AC 433 ms
91,520 KB
testcase_25 AC 514 ms
91,520 KB
testcase_26 RE -
testcase_27 TLE -
testcase_28 AC 1,267 ms
107,392 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 = open("input.txt", "r", encoding="utf-8") if isFile else 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(2000):
        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:
                ans += countList[k][A[k] + diff + 1]

print(ans)
0