結果

問題 No.2060 AND Sequence
ユーザー 👑 NachiaNachia
提出日時 2024-04-22 22:50:09
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 851 ms
コンパイル使用メモリ 77,276 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 22:40:52
合計ジャッジ時間 2,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <array>
#include <atcoder/modint>

using namespace std;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)
using modint = atcoder::static_modint<998244353>;


modint f(u64 N, u64 M){
    if(M == 0) return 1;
    u64 d = 1;
    u64 logd = 0;
    while((d<<1) <= M){ d<<=1; logd++; }
    modint ans = 0;
    ans += modint(N+1).pow(logd);
    ans += f(N, M-d) * modint(N);
    return ans;
}


int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N, M; cin >> N >> M;
    auto ans = f(N, M);
    cout << ans.val() << '\n';
    return 0;
}
0