結果
| 問題 |
No.1184 Hà Nội
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-22 13:13:44 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 212 bytes |
| コンパイル時間 | 1,440 ms |
| コンパイル使用メモリ | 165,312 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-15 07:25:02 |
| 合計ジャッジ時間 | 2,268 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 27 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
long long mod=998244353;
int main(){
long long N,L; cin>>N>>L;
long long count=(N+L-1)/L;
long long ans=pow(2,count);
ans%=mod;
cout<<ans<<endl;
}