結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー KudeKude
提出日時 2024-10-18 21:50:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 6,000 ms
コード長 1,249 bytes
コンパイル時間 3,365 ms
コンパイル使用メモリ 269,876 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-18 22:40:11
合計ジャッジ時間 31,702 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,824 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 3 ms
6,816 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 2 ms
6,820 KB
08_evil_01.txt AC 1,749 ms
6,816 KB
08_evil_02.txt AC 2,361 ms
6,816 KB
08_evil_03.txt AC 1,774 ms
6,816 KB
08_evil_04.txt AC 1,989 ms
6,820 KB
08_evil_05.txt AC 3,177 ms
6,820 KB
08_evil_06.txt AC 2,110 ms
6,820 KB
08_evil_07.txt AC 2,533 ms
6,816 KB
08_evil_08.txt AC 2,169 ms
6,820 KB
08_evil_09.txt AC 3,155 ms
6,816 KB
08_evil_10.txt AC 2,777 ms
6,816 KB
08_evil_11.txt AC 3,266 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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>;
using mint = modint998244353;

const mint inv2 = mint(2).inv();

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  ll n;
  cin >> n;
  mint ans;
  auto cmb2 = [](mint x) {
    return x * (x - 1) * inv2;
  };
  for (ll dl = 1; dl <= n;) {
    ll v_ll = n / dl;
    ll dr = n / v_ll;
    mint v = v_ll;
    ans += cmb2(v) * (dl + dr) * (dr - dl + 1) * inv2;
    ll rl = n % dl;
    ll rr = n % dr;
    ans += v * (rl + 1 + rr + 1) * (dr - dl + 1) * inv2;
    dl = dr + 1;
  }
  cout << ans.val() << '\n';
}
0