結果

問題 No.3257 +|+
ユーザー lif4635
提出日時 2025-09-05 04:40:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 966 ms / 3,000 ms
コード長 302 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 261,652 KB
最終ジャッジ日時 2025-09-05 15:05:39
合計ジャッジ時間 27,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

lim = 400010

ans = 0
for k in range(1, lim):
    cnt = defaultdict(int)
    for i in range(1, n + 1):
        if i * k >= lim: break
        p = k*i-a[i-1]
        ans += cnt[-p]
        cnt[p] += 1

print(ans)
0