結果

問題 No.2374 ASKT Subsequences
ユーザー ryohei22ryohei22
提出日時 2023-07-08 13:17:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 189,560 KB
最終ジャッジ日時 2024-07-22 08:47:46
合計ジャッジ時間 4,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,760 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 40 ms
53,120 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 42 ms
53,376 KB
testcase_05 AC 40 ms
53,120 KB
testcase_06 AC 39 ms
53,504 KB
testcase_07 AC 42 ms
54,400 KB
testcase_08 AC 42 ms
54,016 KB
testcase_09 AC 43 ms
54,016 KB
testcase_10 AC 52 ms
64,128 KB
testcase_11 AC 71 ms
73,472 KB
testcase_12 AC 60 ms
67,456 KB
testcase_13 AC 57 ms
65,280 KB
testcase_14 AC 79 ms
78,848 KB
testcase_15 AC 83 ms
79,616 KB
testcase_16 AC 63 ms
71,428 KB
testcase_17 AC 95 ms
80,948 KB
testcase_18 AC 148 ms
92,544 KB
testcase_19 AC 144 ms
90,120 KB
testcase_20 AC 277 ms
123,084 KB
testcase_21 AC 329 ms
140,464 KB
testcase_22 AC 224 ms
121,984 KB
testcase_23 AC 148 ms
92,252 KB
testcase_24 AC 150 ms
92,544 KB
testcase_25 AC 64 ms
65,920 KB
testcase_26 AC 554 ms
189,560 KB
testcase_27 AC 83 ms
68,736 KB
testcase_28 AC 134 ms
72,956 KB
testcase_29 AC 108 ms
110,848 KB
testcase_30 AC 132 ms
86,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


"""
解説AC
	reference: https://www.youtube.com/watch?v=ImVYMpTuXiY

[方針]
a2 と a3 を固定する。
"""
N = int(input())
A = list(map(int, input().split()))

# s[i][j]: s[0]-s[i] に含まれる j の個数
s = []
cnt = defaultdict(int)
for i in A:
	cnt[i] += 1
	s.append(cnt.copy())

ans = 0
for i in range(1, N-2):
	a2 = A[i]
	for j in range(i+1, N-1):
		a3 = A[j]
		k = a2 - a3
		a1 = a2 - k - 10
		a4 = a3 + k + 1
		if 0 < k:
			ans += s[i-1][a1] * (s[-1][a4] - s[j][a4])
print(ans)
0