結果

問題 No.2956 Substitute with Average
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-11-08 22:18:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 383 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 264,248 KB
最終ジャッジ日時 2024-11-08 22:18:36
合計ジャッジ時間 16,648 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 46 ms
53,888 KB
testcase_03 AC 45 ms
54,272 KB
testcase_04 AC 50 ms
54,144 KB
testcase_05 AC 48 ms
54,272 KB
testcase_06 AC 48 ms
54,144 KB
testcase_07 AC 47 ms
53,888 KB
testcase_08 AC 45 ms
53,760 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 757 ms
263,384 KB
testcase_19 AC 860 ms
244,580 KB
testcase_20 AC 826 ms
249,756 KB
testcase_21 AC 809 ms
253,908 KB
testcase_22 WA -
testcase_23 AC 811 ms
262,788 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)
	cnt=Counter({0:1})
	cnt2=Counter({0:1})
	for j in range(N):
		if cum[j]!=cum[j+1]:
			cnt[cum[j+1]]+=1
		cnt2[cum[j+1]]+=1
	for c in cnt:
		ans-=(cnt2[c]*(cnt2[c]-1)//2-cnt[c]*(cnt[c]-1)//2)
print(1+ans)
0