結果

問題 No.2956 Substitute with Average
ユーザー titiatitia
提出日時 2024-11-12 03:36:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,047 ms / 3,000 ms
コード長 804 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 263,944 KB
最終ジャッジ日時 2024-11-12 03:36:23
合計ジャッジ時間 20,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 48 ms
53,760 KB
testcase_03 AC 47 ms
54,400 KB
testcase_04 AC 48 ms
54,400 KB
testcase_05 AC 48 ms
54,272 KB
testcase_06 AC 47 ms
54,400 KB
testcase_07 AC 48 ms
53,632 KB
testcase_08 AC 47 ms
53,632 KB
testcase_09 AC 48 ms
54,528 KB
testcase_10 AC 924 ms
262,764 KB
testcase_11 AC 949 ms
262,920 KB
testcase_12 AC 932 ms
262,732 KB
testcase_13 AC 948 ms
262,808 KB
testcase_14 AC 905 ms
262,324 KB
testcase_15 AC 952 ms
262,952 KB
testcase_16 AC 943 ms
263,120 KB
testcase_17 AC 1,047 ms
262,840 KB
testcase_18 AC 867 ms
262,952 KB
testcase_19 AC 971 ms
261,160 KB
testcase_20 AC 936 ms
263,836 KB
testcase_21 AC 912 ms
262,892 KB
testcase_22 AC 836 ms
262,412 KB
testcase_23 AC 818 ms
263,944 KB
testcase_24 AC 936 ms
261,552 KB
testcase_25 AC 925 ms
263,360 KB
testcase_26 AC 915 ms
261,780 KB
testcase_27 AC 886 ms
261,872 KB
権限があれば一括ダウンロードができます

ソースコード

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()
    CX=Counter()
    C[0]=1
    for i in range(N):
        if A[i]==x:
            s=S[i+1]
            ANS+=C[s]-1
            CX[s]+=1
        C[S[i+1]]+=1

    #print(S)

    #print(C)
    #print(x,ANS)

    for cv in CX.values():
        ANS-=cv*(cv-1)//2

    #print(x,ANS)

    B.reverse()

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

    C=Counter()
    C[0]=1
    A.reverse()
    for i in range(N):
        if A[i]==x:
            s=S2[i+1]
            ANS+=C[s]-1
        C[S2[i+1]]+=1

    #print(x,ANS)

print(1+N*(N-1)//2-ANS)
0