結果

問題 No.2374 ASKT Subsequences
ユーザー PNJPNJ
提出日時 2023-07-07 22:54:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,080 KB
最終ジャッジ日時 2024-07-21 19:10:49
合計ジャッジ時間 13,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,952 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 WA -
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 35 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 34 ms
10,752 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 593 ms
10,752 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
A = list(map(int,input().split()))
X = defaultdict(int)
ans = 0
for i in range(1,N-2):
  X[A[i-1]] += 1
  Y = defaultdict(int)
  for j in range(i+1,N-1):
    l = N - 2 - j + i + 1
    Y[A[l+1]] += 1
    b = A[i]
    c = A[l]
    k = b - c
    a = b - k - 10
    d = c + k + 1
    p = X[a]
    q = Y[d]
    ans += p*q
print(ans)
0