結果

問題 No.2956 Substitute with Average
ユーザー mkawa2mkawa2
提出日時 2024-11-08 23:54:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,144 bytes
コンパイル時間 581 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 209,496 KB
最終ジャッジ日時 2024-11-08 23:54:59
合計ジャッジ時間 9,510 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 48 ms
53,760 KB
testcase_02 AC 48 ms
54,016 KB
testcase_03 WA -
testcase_04 AC 47 ms
53,504 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 47 ms
54,016 KB
testcase_08 AC 47 ms
54,016 KB
testcase_09 AC 50 ms
54,272 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 78 ms
83,456 KB
testcase_19 AC 131 ms
96,384 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 81 ms
83,712 KB
testcase_23 AC 80 ms
83,072 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

from collections import Counter

n=II()
aa=LI()
ans=n*(n+1)//2-n+1
for v in set(aa):
    s=0
    cnt=Counter()
    cnt0=Counter()
    cnt[0]=1
    for i,a in enumerate(aa):
        s+=a-v
        if i+1<n and aa[i+1]==0:
            ans-=cnt[s]
        else:
            ans-=cnt0[s]
        cnt[s]+=1
        if a-v==0:
            cnt0[s]+=1
    # print(v,ans)
print(ans)



0