結果

問題 No.2956 Substitute with Average
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-11-08 22:29:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 415 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 324,488 KB
最終ジャッジ日時 2024-11-08 22:30:31
合計ジャッジ時間 24,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,016 KB
testcase_01 AC 52 ms
54,144 KB
testcase_02 AC 48 ms
54,144 KB
testcase_03 AC 48 ms
53,888 KB
testcase_04 AC 47 ms
54,144 KB
testcase_05 AC 50 ms
57,728 KB
testcase_06 AC 49 ms
57,984 KB
testcase_07 AC 47 ms
54,016 KB
testcase_08 AC 47 ms
54,528 KB
testcase_09 WA -
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 AC 1,132 ms
322,588 KB
testcase_19 AC 1,310 ms
323,900 KB
testcase_20 AC 1,349 ms
321,756 KB
testcase_21 AC 1,222 ms
318,120 KB
testcase_22 WA -
testcase_23 AC 1,192 ms
322,592 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N=int(input())
A=list(map(int,input().split()))
ans=N*(N+1)//2
for i in range(1,30):
	cum=[0]*(N+1)
	for j in range(N):
		cum[j+1]=cum[j]+(A[j]-i)
	left=Counter()
	dl=Counter()
	cnt2=Counter({0:1})
	for j in range(N):
		if A[j]!=i:
			left[cum[j]]+=1
		if A[j]!=i:
			dl[cum[j+1]]+=left[cum[j+1]]
		cnt2[cum[j+1]]+=1
	for c in cnt2:
		ans-=(cnt2[c]*(cnt2[c]-1)//2-dl[c])
print(1+ans)
0