結果

問題 No.2956 Substitute with Average
ユーザー mkawa2mkawa2
提出日時 2024-11-09 00:40:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 625 ms / 3,000 ms
コード長 1,225 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 215,500 KB
最終ジャッジ日時 2024-11-09 00:40:55
合計ジャッジ時間 9,670 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 47 ms
54,016 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 47 ms
53,760 KB
testcase_06 AC 48 ms
53,760 KB
testcase_07 AC 48 ms
53,888 KB
testcase_08 AC 47 ms
53,760 KB
testcase_09 AC 50 ms
54,272 KB
testcase_10 AC 571 ms
182,628 KB
testcase_11 AC 535 ms
186,020 KB
testcase_12 AC 579 ms
190,176 KB
testcase_13 AC 545 ms
187,600 KB
testcase_14 AC 591 ms
193,012 KB
testcase_15 AC 561 ms
181,388 KB
testcase_16 AC 625 ms
186,460 KB
testcase_17 AC 555 ms
187,860 KB
testcase_18 AC 81 ms
83,584 KB
testcase_19 AC 151 ms
97,924 KB
testcase_20 AC 173 ms
104,232 KB
testcase_21 AC 175 ms
99,300 KB
testcase_22 AC 82 ms
84,352 KB
testcase_23 AC 81 ms
83,840 KB
testcase_24 AC 556 ms
215,500 KB
testcase_25 AC 580 ms
205,784 KB
testcase_26 AC 582 ms
214,576 KB
testcase_27 AC 582 ms
204,216 KB
権限があれば一括ダウンロードができます

ソースコード

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
for i in range(n-1):
    if aa[i]!=aa[i+1]:ans-=1
# print(ans)
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]-v==0:
            ans-=cnt[s]
        else:
            ans-=cnt0[s]
        cnt[s]+=1
        if a-v==0:
            cnt0[s]+=1
        # print(i,ans)
    # print(v,ans)
print(ans)
0