結果

問題 No.3257 +|+
ユーザー lif4635
提出日時 2025-06-14 18:11:49
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 286 bytes
コンパイル時間 594 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 741,176 KB
最終ジャッジ日時 2025-09-05 15:02:29
合計ジャッジ時間 11,561 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 4 MLE * 1 -- * 28
権限があれば一括ダウンロードができます

ソースコード

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):
        ans += cnt[(k, k * i - a[i-1])]
        cnt[(k, a[i-1] - k * i)] += 1

print(ans)
0