結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー ooaiuooaiu
提出日時 2024-10-29 17:39:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 6,000 ms
コード長 786 bytes
コンパイル時間 2,987 ms
コンパイル使用メモリ 249,632 KB
実行使用メモリ 17,248 KB
最終ジャッジ日時 2024-10-29 17:39:27
合計ジャッジ時間 5,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 8 ms
6,816 KB
testcase_18 AC 30 ms
13,144 KB
testcase_19 AC 24 ms
10,880 KB
testcase_20 AC 22 ms
10,704 KB
testcase_21 AC 41 ms
16,460 KB
testcase_22 AC 6 ms
6,816 KB
testcase_23 AC 8 ms
6,816 KB
testcase_24 AC 18 ms
9,456 KB
testcase_25 AC 19 ms
9,504 KB
testcase_26 AC 27 ms
12,044 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 43 ms
17,248 KB
testcase_29 AC 44 ms
17,140 KB
testcase_30 AC 4 ms
6,816 KB
testcase_31 AC 8 ms
6,820 KB
testcase_32 AC 3 ms
6,816 KB
08_evil_01.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#ifdef LOCAL
#include "algo/debug.h"
#else
#define debug(...) (void(0))
#endif

#include <atcoder/modint>
using mint = atcoder::modint998244353;

void solve() {
    int N;
    cin >> N;
    assert( N <= (int)2e6);
    vector<int> D(N + 1);
    for(int i = 1; i <= N; i++) {
        for(int j = i; j <= N; j += i) {
            D[j] += 1;
        }
    }
    vector<long long> S(N + 1);
    S[1] = 1; S[2] = 3;
    for(int i = 3; i <= N; i++) S[i] = D[i] + S[i - 1];
    mint ans = 0;
    for(int i = 1; i <= N; i++) {
        ans += S[i];
    }
    cout << ans.val() << endl;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while(tt--) {
        solve();
    }
}
0