結果
問題 | No.752 mod数列 |
ユーザー | Pachicobue |
提出日時 | 2018-11-10 00:04:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,127 bytes |
コンパイル時間 | 2,138 ms |
コンパイル使用メモリ | 200,460 KB |
実行使用メモリ | 81,664 KB |
最終ジャッジ日時 | 2024-11-21 06:59:52 |
合計ジャッジ時間 | 10,925 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
81,664 KB |
testcase_01 | AC | 122 ms
81,536 KB |
testcase_02 | AC | 121 ms
81,536 KB |
testcase_03 | AC | 122 ms
81,536 KB |
testcase_04 | AC | 121 ms
81,536 KB |
testcase_05 | AC | 122 ms
81,504 KB |
testcase_06 | AC | 121 ms
81,512 KB |
testcase_07 | AC | 122 ms
81,536 KB |
testcase_08 | AC | 122 ms
81,536 KB |
testcase_09 | AC | 121 ms
81,416 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 266 ms
81,536 KB |
testcase_16 | AC | 267 ms
81,536 KB |
testcase_17 | AC | 412 ms
81,476 KB |
testcase_18 | AC | 278 ms
81,464 KB |
testcase_19 | WA | - |
testcase_20 | AC | 288 ms
81,536 KB |
testcase_21 | AC | 287 ms
81,468 KB |
testcase_22 | AC | 286 ms
81,536 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 121 ms
81,536 KB |
testcase_32 | AC | 121 ms
81,496 KB |
testcase_33 | AC | 122 ms
81,536 KB |
ソースコード
//================================= // Created on: 2018/11/09 21:30:39 //================================= #include <bits/stdc++.h> using ll = long long; constexpr ll MAX = 10000000; constexpr int NUM = 100; ll small[MAX + 1], start[NUM], end[NUM]; int main() { std::cin.tie(0); std::ios::sync_with_stdio(false); ll P; int Q; std::cin >> P >> Q; for (ll i = 1; i <= MAX; i++) { small[i] = small[i - 1] + (P % i); } for (ll i = NUM - 1; i >= 1; i--) { start[i] = P / (i + 1) + 1, end[i] = P / i; } auto get = [&](const ll ind) { if (ind <= MAX) { return small[ind]; } ll ans = small[MAX]; for (int i = NUM - 1; i >= 1 and start[i] <= ind; i--) { if (start[i] > end[i]) { continue; } const ll S = std::max(MAX + 1, start[i]), T = std::min(end[i], ind); if (S > T) { continue; } ans += (2 * P - (P / S) * (S + T)) * (T - S + 1) / 2; } return ans; }; for (int q = 0; q < Q; q++) { ll L, R; std::cin >> L >> R; std::cout << get(R) - get(L - 1) << std::endl; } return 0; }