結果
問題 |
No.3257 +|+
|
ユーザー |
|
提出日時 | 2025-09-05 16:57:01 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,077 ms / 3,000 ms |
コード長 | 378 bytes |
コンパイル時間 | 198 ms |
コンパイル使用メモリ | 82,380 KB |
実行使用メモリ | 261,620 KB |
最終ジャッジ日時 | 2025-09-05 16:57:33 |
合計ジャッジ時間 | 29,856 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 33 |
ソースコード
from collections import defaultdict n = int(input()) a = list(map(int, input().split())) assert 2 <= n <= 2 * 10 ** 5 for x in a: assert 1 <= x <= 2 * 10 ** 5 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)