結果

問題 No.2816 At Most Two Moves
ユーザー InTheBloomInTheBloom
提出日時 2024-07-19 22:43:33
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 1,386 ms
コンパイル使用メモリ 90,816 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 22:43:38
合計ジャッジ時間 2,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <atcoder/modint>

#ifdef LOCAL
#include "cpp-dump/dump.hpp"
#endif

using namespace std;
using ll = long long;

using mint = atcoder::static_modint<998244353>;

constexpr int iINF = 1'000'000'000;
constexpr ll llINF = 1'000'000'000'000'000'000;

int main () {
    int T; cin >> T;
    for (int i = 0; i < T; i++) {
        int N; cin >> N;
        if (N == 1) {
            cout << 1 << "\n";
            continue;
        }
        if (N == 2) {
            cout << 3 << "\n";
            continue;
        }

        mint E = 1;
        E /= 2;

        mint not_reach = 3;
        not_reach /= 4;
        not_reach = not_reach.pow(N - 2);
        E *= not_reach;

        // 余事象が到達可能数
        E = 1 - E;

        mint pr = mint(2).pow(1LL * N * (N - 1) / 2);
        mint ans = (1 + (N - 1) * E) * pr;

        cout << ans.val() << "\n";
    }
}
0