結果

問題 No.2956 Substitute with Average
ユーザー 👑 binapbinap
提出日時 2024-10-24 23:05:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 857 ms / 3,000 ms
コード長 739 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 262,904 KB
最終ジャッジ日時 2024-10-25 19:45:39
合計ジャッジ時間 15,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,048 KB
testcase_01 AC 43 ms
54,596 KB
testcase_02 AC 43 ms
54,264 KB
testcase_03 AC 41 ms
55,056 KB
testcase_04 AC 42 ms
55,168 KB
testcase_05 AC 43 ms
54,820 KB
testcase_06 AC 42 ms
54,596 KB
testcase_07 AC 43 ms
54,496 KB
testcase_08 AC 41 ms
55,396 KB
testcase_09 AC 43 ms
54,772 KB
testcase_10 AC 795 ms
261,488 KB
testcase_11 AC 781 ms
261,752 KB
testcase_12 AC 779 ms
261,788 KB
testcase_13 AC 786 ms
261,388 KB
testcase_14 AC 779 ms
261,884 KB
testcase_15 AC 801 ms
262,056 KB
testcase_16 AC 795 ms
261,388 KB
testcase_17 AC 784 ms
261,892 KB
testcase_18 AC 711 ms
261,636 KB
testcase_19 AC 760 ms
262,152 KB
testcase_20 AC 778 ms
261,676 KB
testcase_21 AC 760 ms
262,904 KB
testcase_22 AC 715 ms
261,300 KB
testcase_23 AC 797 ms
261,460 KB
testcase_24 AC 856 ms
261,580 KB
testcase_25 AC 850 ms
261,524 KB
testcase_26 AC 857 ms
261,960 KB
testcase_27 AC 848 ms
261,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

M = 30

def main():
    n = int(input())
    a = list(map(int, input().split()))
    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]
        
        map_zero = defaultdict(int)
        map_non_zero = defaultdict(int)
        
        for i in range(n):
            if b[i] == 0:
                map_zero[s[i]] += 1
                ans -= map_zero[s[i + 1]] + map_non_zero[s[i + 1]]
            else:
                map_non_zero[s[i]] += 1
                ans -= map_zero[s[i + 1]]
    
    ans += 1
    print(ans)

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