結果

問題 No.2956 Substitute with Average
ユーザー startcppstartcpp
提出日時 2024-10-23 23:39:01
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 576 ms / 3,000 ms
コード長 1,271 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 153,224 KB
最終ジャッジ日時 2024-10-25 19:45:32
合計ジャッジ時間 9,444 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
75,396 KB
testcase_01 AC 75 ms
75,428 KB
testcase_02 AC 73 ms
76,024 KB
testcase_03 AC 78 ms
75,308 KB
testcase_04 AC 73 ms
75,652 KB
testcase_05 AC 73 ms
75,540 KB
testcase_06 AC 76 ms
75,424 KB
testcase_07 AC 77 ms
75,912 KB
testcase_08 AC 75 ms
75,448 KB
testcase_09 AC 76 ms
75,932 KB
testcase_10 AC 502 ms
147,200 KB
testcase_11 AC 497 ms
146,648 KB
testcase_12 AC 499 ms
151,528 KB
testcase_13 AC 504 ms
148,104 KB
testcase_14 AC 502 ms
146,132 KB
testcase_15 AC 496 ms
148,084 KB
testcase_16 AC 507 ms
153,224 KB
testcase_17 AC 497 ms
146,556 KB
testcase_18 AC 94 ms
86,836 KB
testcase_19 AC 421 ms
135,044 KB
testcase_20 AC 218 ms
116,516 KB
testcase_21 AC 332 ms
119,656 KB
testcase_22 AC 94 ms
86,580 KB
testcase_23 AC 95 ms
86,908 KB
testcase_24 AC 574 ms
151,796 KB
testcase_25 AC 545 ms
132,344 KB
testcase_26 AC 569 ms
132,724 KB
testcase_27 AC 576 ms
151,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    # 入力
    n = int(raw_input())
    a = list(map(int, raw_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