結果

問題 No.3581 分数対称差更新区間計数取得
コンテスト
ユーザー Kude
提出日時 2026-07-03 22:19:05
言語 C++23
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 1,388 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,518 ms
コンパイル使用メモリ 353,964 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2026-07-03 22:19:53
合計ジャッジ時間 22,281 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 7 WA * 8 TLE * 1 -- * 8
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  static short s[1001];
  static bool d[1000001];
  int q;
  cin >> q;
  while (q--) {
    int m, l, r;
    cin >> m >> l >> r;
    for (int x = 1;;) {
      int v = m / x;
      s[v / 1000] += 1 - d[v] * 2;
      d[v] ^= 1;
      if (v == 0) break;
      x = m / v + 1;
    }
    int bl = l / 1000, br = r / 1000;
    int ans = 0;
    if (bl == br) ans = accumulate(d + l, d + r + 1, 0);
    else {
      ans += accumulate(d + l, d + (bl + 1) * 1000, 0);
      ans += accumulate(d + bl * 1000, d + r + 1, 0);
      ans += accumulate(s + bl + 1, s + br, 0);
    }
    cout << ans << '\n';
  }
}
0