結果

問題 No.2956 Substitute with Average
ユーザー 👑 binapbinap
提出日時 2024-10-19 03:55:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 335 ms / 3,000 ms
コード長 1,056 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 227,812 KB
最終ジャッジ日時 2024-10-25 19:44:47
合計ジャッジ時間 6,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,032 KB
testcase_01 AC 36 ms
53,628 KB
testcase_02 AC 37 ms
52,336 KB
testcase_03 AC 37 ms
54,468 KB
testcase_04 AC 36 ms
52,588 KB
testcase_05 AC 37 ms
54,384 KB
testcase_06 AC 37 ms
53,136 KB
testcase_07 AC 37 ms
54,440 KB
testcase_08 AC 36 ms
53,696 KB
testcase_09 AC 37 ms
53,508 KB
testcase_10 AC 260 ms
225,012 KB
testcase_11 AC 258 ms
224,336 KB
testcase_12 AC 260 ms
225,348 KB
testcase_13 AC 259 ms
226,420 KB
testcase_14 AC 262 ms
224,608 KB
testcase_15 AC 260 ms
225,068 KB
testcase_16 AC 262 ms
225,164 KB
testcase_17 AC 260 ms
224,332 KB
testcase_18 AC 274 ms
227,616 KB
testcase_19 AC 265 ms
226,388 KB
testcase_20 AC 266 ms
226,348 KB
testcase_21 AC 257 ms
225,640 KB
testcase_22 AC 280 ms
227,812 KB
testcase_23 AC 335 ms
152,080 KB
testcase_24 AC 312 ms
163,352 KB
testcase_25 AC 280 ms
226,296 KB
testcase_26 AC 326 ms
164,864 KB
testcase_27 AC 313 ms
158,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    M = 30
    R = n * M


    ans = n * (n + 1) // 2
    
    cnt = [0] * (2 * R + 1)
    
	# [x or not x, \cdots, x]
    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):
            cnt[R + s[i]] += 1
            if b[i] == 0:
                ans -= cnt[R + s[i + 1]]

        for i in range(n):
            cnt[R + s[i]] = 0

	# [x, \cdots, not x]
    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[R + s[i]] += 1
            else:
                ans -= cnt[R + s[i + 1]]

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


    ans += 1
    print(ans)

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