結果

問題 No.2956 Substitute with Average
ユーザー 👑 binapbinap
提出日時 2024-10-19 02:45:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 3,000 ms
コード長 872 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 224,540 KB
最終ジャッジ日時 2024-10-25 19:44:34
合計ジャッジ時間 5,854 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,652 KB
testcase_01 AC 36 ms
52,324 KB
testcase_02 AC 41 ms
52,824 KB
testcase_03 AC 37 ms
52,528 KB
testcase_04 AC 37 ms
53,300 KB
testcase_05 AC 38 ms
52,532 KB
testcase_06 AC 38 ms
52,592 KB
testcase_07 AC 37 ms
53,476 KB
testcase_08 AC 37 ms
53,412 KB
testcase_09 AC 37 ms
52,956 KB
testcase_10 AC 215 ms
221,944 KB
testcase_11 AC 207 ms
221,428 KB
testcase_12 AC 206 ms
221,356 KB
testcase_13 AC 207 ms
222,044 KB
testcase_14 AC 211 ms
221,336 KB
testcase_15 AC 213 ms
222,836 KB
testcase_16 AC 212 ms
222,688 KB
testcase_17 AC 211 ms
220,564 KB
testcase_18 AC 228 ms
223,720 KB
testcase_19 AC 210 ms
222,500 KB
testcase_20 AC 216 ms
223,784 KB
testcase_21 AC 209 ms
222,176 KB
testcase_22 AC 246 ms
224,540 KB
testcase_23 AC 316 ms
223,416 KB
testcase_24 AC 264 ms
224,020 KB
testcase_25 AC 212 ms
222,908 KB
testcase_26 AC 267 ms
223,760 KB
testcase_27 AC 260 ms
223,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    a = list(map(int, input().split()))

    M = 30
    R = n * M

    cnt_zero = [0] * (2 * R + 1)
    cnt_non_zero = [0] * (2 * R + 1)

    ans = n * (n + 1) // 2
    for x in range(1, M + 1):
        b = [a[i] - x for i in range(n)]
        
        s = [0] * (n + 1)
        for i in range(n):
            s[i + 1] = s[i] + b[i]
        
        for i in range(n):
            if b[i] == 0:
                cnt_zero[R + s[i]] += 1
                ans -= cnt_zero[R + s[i + 1]] + cnt_non_zero[R + s[i + 1]]
            else:
                cnt_non_zero[R + s[i]] += 1
                ans -= cnt_zero[R + s[i + 1]]

        for i in range(n):
            if b[i] == 0:
                cnt_zero[R + s[i]] = 0
            else:
                cnt_non_zero[R + s[i]] = 0

    ans += 1
    print(ans)

if __name__ == "__main__":
    main()
0