結果
問題 | No.2956 Substitute with Average |
ユーザー | hirayuu_yc |
提出日時 | 2024-11-08 22:31:34 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 413 bytes |
コンパイル時間 | 335 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 324,868 KB |
最終ジャッジ日時 | 2024-11-08 22:32:05 |
合計ジャッジ時間 | 25,798 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 53 ms
58,240 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 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
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(ans)