結果

問題 No.3257 +|+
ユーザー lif4635
提出日時 2025-09-05 04:37:48
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 297 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 708,576 KB
最終ジャッジ日時 2025-09-05 15:05:30
合計ジャッジ時間 8,863 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 4 TLE * 2 MLE * 2 -- * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

lim = 400010

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

print(ans)
0