結果

問題 No.2956 Substitute with Average
ユーザー 👑 rin204rin204
提出日時 2024-11-08 22:08:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 770 ms / 3,000 ms
コード長 468 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 242,444 KB
最終ジャッジ日時 2024-11-08 22:08:49
合計ジャッジ時間 13,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 681 ms
238,316 KB
testcase_11 AC 710 ms
237,796 KB
testcase_12 AC 670 ms
233,704 KB
testcase_13 AC 693 ms
238,204 KB
testcase_14 AC 671 ms
239,048 KB
testcase_15 AC 770 ms
240,468 KB
testcase_16 AC 709 ms
238,328 KB
testcase_17 AC 678 ms
237,792 KB
testcase_18 AC 693 ms
237,800 KB
testcase_19 AC 677 ms
233,852 KB
testcase_20 AC 721 ms
241,756 KB
testcase_21 AC 679 ms
242,444 KB
testcase_22 AC 637 ms
239,292 KB
testcase_23 AC 608 ms
228,648 KB
testcase_24 AC 706 ms
235,752 KB
testcase_25 AC 704 ms
235,504 KB
testcase_26 AC 693 ms
233,000 KB
testcase_27 AC 703 ms
234,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

ans = n * (n + 1) // 2

for t in range(1, 31):
    B = [a - t for a in A]

    cnt = {}
    tot = 0
    cnt[0] = 1
    for b in B:
        tot += b
        ans -= cnt.get(tot, 0)
        cnt[tot] = cnt.get(tot, 0) + 1

    cnt = {}
    tot = 0
    for b in B:
        if b != 0:
            cnt[tot] = cnt.get(tot, 0) + 1
        tot += b
        if b != 0:
            ans += cnt.get(tot, 0)

ans += 1
print(ans)
0