結果

問題 No.2374 ASKT Subsequences
ユーザー とろちゃとろちゃ
提出日時 2023-07-07 22:16:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,148 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 112,444 KB
最終ジャッジ日時 2024-07-21 18:22:08
合計ジャッジ時間 12,974 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,684 KB
testcase_01 AC 45 ms
55,200 KB
testcase_02 AC 47 ms
54,064 KB
testcase_03 AC 44 ms
55,312 KB
testcase_04 AC 46 ms
53,944 KB
testcase_05 AC 43 ms
54,604 KB
testcase_06 AC 45 ms
54,744 KB
testcase_07 AC 51 ms
62,652 KB
testcase_08 AC 47 ms
60,816 KB
testcase_09 AC 49 ms
61,280 KB
testcase_10 AC 56 ms
64,080 KB
testcase_11 AC 71 ms
70,668 KB
testcase_12 AC 68 ms
68,108 KB
testcase_13 AC 56 ms
65,668 KB
testcase_14 AC 85 ms
71,284 KB
testcase_15 AC 105 ms
73,248 KB
testcase_16 AC 72 ms
69,036 KB
testcase_17 AC 145 ms
80,080 KB
testcase_18 AC 400 ms
84,376 KB
testcase_19 AC 327 ms
83,524 KB
testcase_20 AC 721 ms
94,316 KB
testcase_21 AC 1,094 ms
98,692 KB
testcase_22 AC 606 ms
91,072 KB
testcase_23 AC 406 ms
84,636 KB
testcase_24 AC 411 ms
84,904 KB
testcase_25 AC 630 ms
76,952 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
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 = [Counter() for _ in range(N)]

for i in range(-1, -N - 1, -1):
    countList[i].update(countList[i + 1])
    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