結果

問題 No.1184 Hà Nội
ユーザー ooooobaoooooba
提出日時 2021-06-26 10:36:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 716 bytes
コンパイル時間 1,032 ms
コンパイル使用メモリ 117,044 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-07 13:46:28
合計ジャッジ時間 3,540 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 WA -
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
4,504 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1 ms
4,376 KB
testcase_28 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

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