結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 46 ms
53,888 KB
testcase_03 AC 45 ms
54,016 KB
testcase_04 AC 45 ms
53,888 KB
testcase_05 AC 47 ms
54,272 KB
testcase_06 AC 45 ms
54,400 KB
testcase_07 AC 47 ms
54,016 KB
testcase_08 AC 45 ms
53,760 KB
testcase_09 AC 46 ms
54,656 KB
testcase_10 AC 851 ms
263,068 KB
testcase_11 AC 839 ms
253,308 KB
testcase_12 AC 824 ms
253,452 KB
testcase_13 AC 852 ms
262,928 KB
testcase_14 AC 826 ms
253,808 KB
testcase_15 AC 873 ms
262,756 KB
testcase_16 AC 859 ms
263,076 KB
testcase_17 AC 820 ms
253,736 KB
testcase_18 AC 859 ms
263,380 KB
testcase_19 AC 883 ms
244,704 KB
testcase_20 AC 915 ms
249,624 KB
testcase_21 AC 847 ms
253,788 KB
testcase_22 AC 785 ms
264,124 KB
testcase_23 AC 798 ms
263,272 KB
testcase_24 AC 878 ms
263,704 KB
testcase_25 AC 854 ms
263,672 KB
testcase_26 AC 874 ms
263,580 KB
testcase_27 AC 842 ms
263,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N=int(input())
A=list(map(int,input().split()))
ans=N*(N+1)//2
for i in range(1,31):
	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