結果

問題 No.2956 Substitute with Average
ユーザー 👑 binapbinap
提出日時 2024-10-19 03:13:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 987 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 138,792 KB
最終ジャッジ日時 2024-10-25 19:44:47
合計ジャッジ時間 11,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
138,792 KB
testcase_01 AC 524 ms
44,624 KB
testcase_02 AC 524 ms
44,104 KB
testcase_03 AC 529 ms
44,236 KB
testcase_04 AC 525 ms
44,620 KB
testcase_05 AC 530 ms
44,492 KB
testcase_06 AC 524 ms
44,372 KB
testcase_07 AC 527 ms
44,496 KB
testcase_08 AC 524 ms
44,232 KB
testcase_09 AC 534 ms
44,236 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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

    M = 100
    R = n * M

    # numpyでゼロ初期化されたint型配列を作成
    cnt_zero = np.zeros(2 * R + 1, dtype=np.int_)
    cnt_non_zero = np.zeros(2 * R + 1, dtype=np.int_)

    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