結果

問題 No.1184 Hà Nội
ユーザー oooooba
提出日時 2021-06-26 10:36:02
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 716 bytes
コンパイル時間 1,002 ms
コンパイル使用メモリ 114,124 KB
最終ジャッジ日時 2025-01-22 13:03:03
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <cmath>
#include <cstdio>
#include <deque>
#include <iomanip>
#include <iostream>
#include <numeric>
#include <optional>
#include <queue>
#include <set>
#include <stack>
#include <unordered_map>
#include <unordered_set>
#include <vector>

using namespace std;

const int64_t MOD = 998244353;

int64_t f(int64_t x, int64_t n) {
    if (n == 0)
        return 1;
    int64_t ans = f(x, n / 2);
    ans = ans * ans % MOD;
    if (n % 2)
        ans = ans * x % MOD;
    return ans;
}

int main() {
    int64_t n, l;
    cin >> n >> l;
    n = max(n - l, int64_t(0)) + 1;
    int64_t ans = f(2, n);
    ans = (ans - 1 + MOD) % MOD;
    cout << ans << endl;
    return 0;
}
0