結果

問題 No.752 mod数列
ユーザー ei1333333ei1333333
提出日時 2018-11-09 22:40:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 945 bytes
コンパイル時間 2,067 ms
コンパイル使用メモリ 205,464 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-21 06:30:38
合計ジャッジ時間 32,551 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
10,912 KB
testcase_02 AC 2 ms
11,040 KB
testcase_03 AC 2 ms
11,044 KB
testcase_04 AC 2 ms
10,920 KB
testcase_05 AC 2 ms
10,920 KB
testcase_06 AC 2 ms
13,640 KB
testcase_07 AC 2 ms
10,916 KB
testcase_08 AC 2 ms
13,640 KB
testcase_09 AC 2 ms
11,044 KB
testcase_10 AC 64 ms
13,636 KB
testcase_11 AC 30 ms
10,912 KB
testcase_12 AC 53 ms
13,632 KB
testcase_13 AC 41 ms
6,820 KB
testcase_14 AC 64 ms
6,816 KB
testcase_15 AC 268 ms
6,820 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 477 ms
6,816 KB
testcase_19 AC 1,771 ms
6,816 KB
testcase_20 AC 725 ms
6,816 KB
testcase_21 AC 670 ms
6,816 KB
testcase_22 AC 563 ms
6,816 KB
testcase_23 AC 833 ms
6,816 KB
testcase_24 AC 585 ms
6,816 KB
testcase_25 AC 1,582 ms
6,820 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 16 ms
10,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using int64 = long long;


int main() {
  int P, Q;
  cin >> P >> Q;

  vector< pair< pair< int, int >, int > > rad;
  int ptr = 1;
  while(ptr <= P) {
    int ok = ptr, ng = P + 1;
    int real = P / ptr;
    while(ng - ok > 1) {
      int mid = (ok + ng) / 2;
      if(P / mid == real) ok = mid;
      else ng = mid;
    }
    rad.emplace_back(make_pair(ptr, ok), P / ptr);
    ptr = ok + 1;
  }


  auto get = [&](int L, int R) {
    __int128_t add = 1LL * P * (R - L + 1);
    for(auto &p : rad) {
      auto range = p.first;
      auto val = p.second;
      int latte = max(range.first, L);
      int malta = min(range.second, R);
      if(latte > malta) continue;
      add += val * (1LL * latte * (latte - 1) / 2);
      add -= val * (1LL * malta * (malta + 1) / 2);
    }
    return (int64) add;
  };

  while(Q--) {
    int L, R;
    cin >> L >> R;
    cout << get(L, R) << endl;
  }

}

0