結果

問題 No.2956 Substitute with Average
ユーザー startcppstartcpp
提出日時 2024-10-23 03:32:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 3,000 ms
コード長 1,263 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 156,612 KB
最終ジャッジ日時 2024-10-25 19:45:22
合計ジャッジ時間 9,083 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,620 KB
testcase_01 AC 41 ms
52,252 KB
testcase_02 AC 43 ms
54,372 KB
testcase_03 AC 40 ms
52,520 KB
testcase_04 AC 37 ms
52,456 KB
testcase_05 AC 37 ms
52,280 KB
testcase_06 AC 36 ms
52,896 KB
testcase_07 AC 37 ms
52,340 KB
testcase_08 AC 37 ms
52,828 KB
testcase_09 AC 38 ms
53,668 KB
testcase_10 AC 502 ms
147,500 KB
testcase_11 AC 500 ms
146,552 KB
testcase_12 AC 494 ms
146,216 KB
testcase_13 AC 494 ms
148,560 KB
testcase_14 AC 495 ms
146,984 KB
testcase_15 AC 525 ms
148,788 KB
testcase_16 AC 479 ms
140,856 KB
testcase_17 AC 495 ms
146,968 KB
testcase_18 AC 60 ms
80,844 KB
testcase_19 AC 404 ms
138,456 KB
testcase_20 AC 196 ms
115,320 KB
testcase_21 AC 293 ms
121,424 KB
testcase_22 AC 61 ms
81,660 KB
testcase_23 AC 61 ms
80,384 KB
testcase_24 AC 546 ms
156,352 KB
testcase_25 AC 531 ms
131,888 KB
testcase_26 AC 550 ms
133,008 KB
testcase_27 AC 545 ms
156,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    assert 1 <= n <= 150000
    minA = min(a)
    maxA = max(a)
    assert 1 <= minA <= 100 and maxA <= 100

    # raの初期化
    ra = [0] * (n + 1)
    ans = n * (n + 1) // 2

    for x in range(minA, maxA + 1):
        ra[0] = 0
        for i in range(n):
            ra[i + 1] = ra[i] + a[i] - x

        # 隣接重複を削除
        rb = [ra[0]]
        for i in range(1, len(ra)):
            if ra[i] != ra[i - 1]:
                rb.append(ra[i])

        # raをソート
        ra.sort()
        
        # rbをソート
        rb.sort()

        # raに基づいてカウント
        cnt = 0
        for i in range(n + 1):
            if i > 0 and ra[i] != ra[i - 1]:
                ans -= cnt * (cnt - 1) // 2
                cnt = 0
            cnt += 1
        ans -= cnt * (cnt - 1) // 2

        # rbに基づいてカウント
        cnt = 0
        for i in range(len(rb)):
            if i > 0 and rb[i] != rb[i - 1]:
                ans += cnt * (cnt - 1) // 2
                cnt = 0
            cnt += 1
        ans += cnt * (cnt - 1) // 2

    ans += 1  # 初期状態の分を足す

    print(ans)


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