結果

問題 No.2374 ASKT Subsequences
ユーザー 👑 p-adicp-adic
提出日時 2023-07-08 10:42:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 228 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 116,624 KB
最終ジャッジ日時 2024-07-22 06:30:45
合計ジャッジ時間 11,705 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
105,640 KB
testcase_01 AC 255 ms
105,064 KB
testcase_02 AC 247 ms
103,556 KB
testcase_03 AC 249 ms
105,316 KB
testcase_04 AC 261 ms
107,160 KB
testcase_05 AC 250 ms
105,812 KB
testcase_06 AC 252 ms
104,660 KB
testcase_07 AC 285 ms
107,336 KB
testcase_08 AC 274 ms
106,264 KB
testcase_09 AC 261 ms
97,700 KB
testcase_10 AC 275 ms
107,268 KB
testcase_11 AC 290 ms
108,544 KB
testcase_12 WA -
testcase_13 AC 285 ms
106,724 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 330 ms
110,548 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 325 ms
109,332 KB
testcase_26 WA -
testcase_27 AC 364 ms
111,844 KB
testcase_28 WA -
testcase_29 AC 399 ms
116,624 KB
testcase_30 AC 474 ms
114,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
N=I()
A=list(map(int,I().split()))
c=0
L=R(2001)
for k in L:
	D=[[0]*4 for a in R(4001)]
	for a in A:D[a]=[D[a][0]+1,D[a][1]+D[a-k-10][0],D[a][2]+D[a+k][1],D[a][3]+D[a-k-1][2]]
	c+=sum(D[a][3]for a in L)
print(c)
0