結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー hitonanodehitonanode
提出日時 2024-10-18 22:00:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 762 ms
コンパイル使用メモリ 77,712 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-10-18 22:44:24
合計ジャッジ時間 2,424 ms
ジャッジサーバーID
(参考情報)
judge8 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,824 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,824 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 3 ms
6,820 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
6,820 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
08_evil_09.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    assert(N <= 1e7);

    long long ret = 0;
    for (int d = 1; d <= N; ++d) {
        int k = (N + 1) / d;
        int md = (N + 1) % d;
        ret += (long long)d * ((k - 1) * k / 2 % mod) % mod + (long long)k * md % mod;
    }
    cout << ret % mod << '\n';
}
0