結果

問題 No.2374 ASKT Subsequences
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-23 11:13:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,752 KB
最終ジャッジ日時 2024-09-30 13:08:48
合計ジャッジ時間 3,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 36 ms
53,120 KB
testcase_04 AC 39 ms
59,392 KB
testcase_05 AC 35 ms
52,736 KB
testcase_06 AC 34 ms
52,608 KB
testcase_07 AC 69 ms
76,416 KB
testcase_08 AC 62 ms
75,008 KB
testcase_09 AC 69 ms
76,416 KB
testcase_10 AC 73 ms
76,672 KB
testcase_11 AC 58 ms
73,984 KB
testcase_12 AC 58 ms
73,472 KB
testcase_13 AC 66 ms
76,160 KB
testcase_14 AC 60 ms
73,980 KB
testcase_15 AC 62 ms
73,984 KB
testcase_16 AC 60 ms
73,472 KB
testcase_17 AC 78 ms
76,160 KB
testcase_18 AC 82 ms
76,248 KB
testcase_19 AC 81 ms
75,776 KB
testcase_20 AC 131 ms
76,416 KB
testcase_21 AC 135 ms
76,544 KB
testcase_22 AC 121 ms
76,416 KB
testcase_23 AC 85 ms
76,160 KB
testcase_24 AC 84 ms
75,904 KB
testcase_25 AC 59 ms
69,200 KB
testcase_26 AC 160 ms
76,672 KB
testcase_27 AC 132 ms
76,752 KB
testcase_28 AC 58 ms
68,992 KB
testcase_29 AC 161 ms
76,580 KB
testcase_30 AC 93 ms
76,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
A=max(a)
g=0
for k in range(1,A):
	q=[[0]*(A+1) for _ in range(3)]
	for i in range(n):
		if a[i]-k-1>=0:
			g+=q[2][a[i]-k-1]
		if a[i]+k<=A:
			q[2][a[i]]+=q[1][a[i]+k]
		if a[i]-k-10>=0:
			q[1][a[i]]+=q[0][a[i]-k-10]
		q[0][a[i]]+=1
print(g)
0