結果

問題 No.2956 Substitute with Average
ユーザー vwxyzvwxyz
提出日時 2024-11-08 21:56:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 307 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 102,528 KB
最終ジャッジ日時 2024-11-08 21:56:42
合計ジャッジ時間 3,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 47 ms
53,376 KB
testcase_03 WA -
testcase_04 AC 46 ms
53,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 46 ms
53,120 KB
testcase_09 AC 47 ms
53,504 KB
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 86 ms
91,008 KB
testcase_19 AC 112 ms
99,072 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 87 ms
91,392 KB
testcase_23 AC 89 ms
91,136 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N=int(input())
A=list(map(int,input().split()))
C=[0]+A
for i in range(1,N+1):
    C[i]+=C[i-1]
dct=defaultdict(list)
for i in range(N):
    dct[(A[i],C[i]-i*A[i])].append(i)
ans=N*(N-1)//2
for lst in dct.values():
    le=len(lst)
    ans-=le*(le-1)//2
ans+=1
print(ans)
0