結果
問題 | No.2060 AND Sequence |
ユーザー |
|
提出日時 | 2022-08-26 21:59:04 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 276 bytes |
コンパイル時間 | 536 ms |
コンパイル使用メモリ | 66,432 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 22:35:04 |
合計ジャッジ時間 | 1,697 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 43 |
コンパイルメッセージ
main.cpp:12:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 12 | main() | ^~~~
ソースコード
#include<iostream> #include<atcoder/modint> using namespace std; using mint=atcoder::modint998244353; int N,M; mint f(int k,int M) { if(k==-1)return 1; if(M>>k&1)return mint(N+1).pow(k)+f(k-1,M)*N; else return f(k-1,M); } main() { cin>>N>>M; cout<<f(29,M).val()<<endl; }