結果

問題 No.2956 Substitute with Average
ユーザー titiatitia
提出日時 2024-11-12 03:23:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 1,020 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,800 KB
最終ジャッジ日時 2024-11-12 03:24:25
合計ジャッジ時間 64,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 30 ms
10,624 KB
testcase_05 WA -
testcase_06 AC 29 ms
10,624 KB
testcase_07 WA -
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import Counter

N=int(input())
A=list(map(int,input().split()))

ANS=0

for x in range(1,31):
    B=[A[i]-x for i in range(N)]

    S=[0]
    for b in B:
        S.append(S[-1]+b)

    C=Counter()
    C[0]=1
    for i in range(N):
        if A[i]==x:
            s=S[i+1]
            ANS+=C[s]-1
        C[S[i+1]]+=1
print(1+N*(N-1)//2-ANS)
0