結果

問題 No.2956 Substitute with Average
ユーザー 👑 binapbinap
提出日時 2024-10-20 15:30:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 345 ms / 3,000 ms
コード長 1,088 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 204,744 KB
最終ジャッジ日時 2024-10-25 19:44:56
合計ジャッジ時間 6,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,280 KB
testcase_01 AC 39 ms
52,996 KB
testcase_02 AC 39 ms
53,224 KB
testcase_03 AC 37 ms
53,156 KB
testcase_04 AC 38 ms
52,792 KB
testcase_05 AC 38 ms
53,340 KB
testcase_06 AC 38 ms
53,744 KB
testcase_07 AC 39 ms
52,640 KB
testcase_08 AC 38 ms
53,488 KB
testcase_09 AC 38 ms
53,820 KB
testcase_10 AC 271 ms
202,224 KB
testcase_11 AC 251 ms
202,028 KB
testcase_12 AC 249 ms
201,808 KB
testcase_13 AC 276 ms
202,900 KB
testcase_14 AC 269 ms
202,012 KB
testcase_15 AC 250 ms
203,636 KB
testcase_16 AC 248 ms
202,192 KB
testcase_17 AC 278 ms
200,648 KB
testcase_18 AC 258 ms
203,756 KB
testcase_19 AC 245 ms
203,192 KB
testcase_20 AC 254 ms
202,504 KB
testcase_21 AC 273 ms
202,796 KB
testcase_22 AC 275 ms
204,744 KB
testcase_23 AC 345 ms
128,800 KB
testcase_24 AC 336 ms
139,880 KB
testcase_25 AC 255 ms
203,760 KB
testcase_26 AC 312 ms
141,424 KB
testcase_27 AC 342 ms
134,896 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] * (R + 1)
    
	# [x or not x, \cdots, x]
    for x in range(1, M + 1):
        b = [a[i] - x for i in range(n)]
        C = n * x
        
        s = [0] * (n + 1)
        for i in range(n):
            s[i + 1] = s[i] + b[i]
        
        for i in range(n):
            cnt[C + s[i]] += 1
            if b[i] == 0:
                ans -= cnt[C + s[i + 1]]

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

	# [x, \cdots, not x]
    for x in range(1, M + 1):
        b = [a[i] - x for i in range(n)]
        C = n * x
        
        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[C + s[i]] += 1
            else:
                ans -= cnt[C + s[i + 1]]

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


    ans += 1
    print(ans)

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