結果

問題 No.2903 A Round-the-World Trip with the Tent
ユーザー vwxyzvwxyz
提出日時 2024-09-27 21:09:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,893 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 941 ms
コンパイル使用メモリ 100,844 KB
実行使用メモリ 191,872 KB
最終ジャッジ日時 2024-09-27 21:09:54
合計ジャッジ時間 22,231 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 1,893 ms
191,784 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1,880 ms
191,872 KB
testcase_05 AC 11 ms
6,940 KB
testcase_06 AC 282 ms
39,948 KB
testcase_07 AC 266 ms
41,452 KB
testcase_08 AC 1,826 ms
182,576 KB
testcase_09 AC 1,652 ms
172,864 KB
testcase_10 AC 260 ms
45,252 KB
testcase_11 AC 1,718 ms
178,276 KB
testcase_12 AC 781 ms
95,852 KB
testcase_13 AC 368 ms
46,832 KB
testcase_14 AC 1,075 ms
117,468 KB
testcase_15 AC 1,204 ms
117,540 KB
testcase_16 AC 454 ms
60,292 KB
testcase_17 AC 128 ms
24,064 KB
testcase_18 AC 138 ms
23,344 KB
testcase_19 AC 34 ms
10,752 KB
testcase_20 AC 1,815 ms
184,964 KB
testcase_21 AC 1,705 ms
186,776 KB
testcase_22 AC 382 ms
51,712 KB
testcase_23 AC 1,200 ms
136,628 KB
testcase_24 AC 1,015 ms
116,232 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 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,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 1 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 2 ms
6,940 KB
testcase_44 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
using namespace std;
#define int long long

const int MOD = 998244353;

signed main() {
    int N;
    long long K;  // K is long long
    cin >> K >> N;

    vector<vector<int>> D(N + 1);
    for (int d = 1; d <= N; ++d) {
        for (int n = 2 * d; n <= N; n += d) {
            D[n].push_back(d);
        }
    }
    long long pow2=2;
    vector<int> dp(N + 1, 0);
    for (int n = 1; n <= N; ++n) {
        dp[n] = pow2 % MOD;
        pow2*=2;
        pow2%=MOD;
        if (K > 1) {
            dp[n] += 1;
        }
        for (int d : D[n]) {
            dp[n] = (dp[n] - dp[d] + MOD) % MOD;
        }
    }

    int ans = dp[N];
    cout << ans << endl;

    return 0;
}
0