結果

問題 No.2902 ZERO!!
ユーザー 👑 NachiaNachia
提出日時 2024-08-20 08:23:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 836 bytes
コンパイル時間 1,087 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 15,752 KB
最終ジャッジ日時 2024-08-20 08:23:37
合計ジャッジ時間 3,579 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 57 ms
15,752 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 14 ms
6,944 KB
testcase_05 AC 27 ms
9,336 KB
testcase_06 AC 52 ms
14,992 KB
testcase_07 AC 16 ms
6,940 KB
testcase_08 AC 50 ms
14,248 KB
testcase_09 AC 50 ms
13,860 KB
testcase_10 AC 36 ms
11,112 KB
testcase_11 AC 33 ms
9,740 KB
testcase_12 AC 5 ms
6,944 KB
testcase_13 AC 54 ms
14,112 KB
testcase_14 AC 41 ms
11,444 KB
testcase_15 AC 46 ms
12,708 KB
testcase_16 AC 27 ms
8,752 KB
testcase_17 AC 52 ms
13,840 KB
testcase_18 AC 46 ms
13,236 KB
testcase_19 AC 44 ms
12,096 KB
testcase_20 AC 36 ms
10,792 KB
testcase_21 AC 43 ms
11,392 KB
testcase_22 AC 22 ms
7,284 KB
testcase_23 AC 29 ms
9,068 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 1 ms
6,944 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 1 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <atcoder/modint>
using i64 = long long;
using Modint = atcoder::static_modint<998244353>;
using namespace std;

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    int N; cin >> N;
    vector<i64> isPrime(N+1, 1);
    isPrime[0] = isPrime[1] = 0;
    for(i64 k=2; k*k<=N; k++) if(isPrime[k]){
        for(i64 q=k*k; q<=N; q+=k) isPrime[q] = 0;
    }
    vector<i64> A;
    for(i64 k=2; k<=N; k++) if(isPrime[k]){
        i64 t = N;
        i64 c = 0;
        while(t){ c += (t /= k); }
        A.push_back(c);
    }
    vector<Modint> Q(A[0]+1, 1);
    for(i64 a : A) for(i64 c=1; c<=a; c++) Q[c] *= a/c+1;
    Modint ans = 0;
    for(i64 a=1; a<=A[0]; a++) ans += Q[a];
    ans -= A[0];
    cout << ans.val() << endl;
    return 0;
}
0