結果

問題 No.1184 Hà Nội
ユーザー oooooba
提出日時 2021-08-22 19:50:14
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 714 bytes
コンパイル時間 1,148 ms
コンパイル使用メモリ 114,212 KB
最終ジャッジ日時 2025-01-24 01:33:14
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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; // NOLINT

const int64_t MOD = 998244353;

int64_t f(int64_t x, int64_t y) {
    if (y == 0)
        return 1;
    auto z = f(x, y / 2);
    z = z * z % MOD;
    if (y % 2)
        z = z * x % MOD;
    return z;
}

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