結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー hitonanodehitonanode
提出日時 2024-10-18 22:24:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 6,000 ms
コード長 695 bytes
コンパイル時間 1,011 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-18 22:50:47
合計ジャッジ時間 6,261 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 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,816 KB
testcase_15 AC 1 ms
6,820 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,816 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,816 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 2 ms
6,820 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 2 ms
6,820 KB
08_evil_01.txt AC 4,268 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <iostream>
using namespace std;
constexpr int mod = 998244353;

int main() {
    long long N;
    cin >> N;

    // assert(N <= 1e7);

    __int128 ret = 0;
    for (long long d = 1; d <= N;) {
        const long long k = (N + 1) / d;
        long long r = (N + 1) / k;
        if (r > N) r = N;

        // [d, r]
        const long long sum = __int128(d + r) * (r - d + 1) / 2 % mod;

        ret += (long long)(__int128(k - 1) * k / 2 % mod) * sum % mod;

        long long mdsum = __int128(N + 1) * (r + 1 - d) % mod - sum * (k % mod) % mod;
        ret += (mdsum + mod) * (k % mod) % mod;

        d = r + 1;
    }

    cout << (long long)(ret % mod) << '\n';
}
0