結果

問題 No.2816 At Most Two Moves
ユーザー とりゐとりゐ
提出日時 2024-07-19 22:39:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-07-19 22:39:36
合計ジャッジ時間 2,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 72 ms
64,640 KB
testcase_02 AC 69 ms
64,512 KB
testcase_03 AC 69 ms
64,768 KB
testcase_04 AC 69 ms
65,024 KB
testcase_05 AC 71 ms
64,640 KB
testcase_06 AC 74 ms
64,768 KB
testcase_07 AC 71 ms
65,024 KB
testcase_08 AC 72 ms
64,768 KB
testcase_09 AC 73 ms
64,640 KB
testcase_10 AC 73 ms
64,640 KB
testcase_11 AC 73 ms
64,512 KB
testcase_12 AC 73 ms
64,512 KB
testcase_13 AC 73 ms
64,640 KB
testcase_14 AC 74 ms
64,640 KB
testcase_15 AC 73 ms
64,512 KB
testcase_16 AC 73 ms
65,152 KB
testcase_17 AC 72 ms
65,024 KB
testcase_18 AC 72 ms
64,512 KB
testcase_19 AC 73 ms
64,512 KB
testcase_20 AC 72 ms
65,024 KB
testcase_21 AC 74 ms
64,640 KB
testcase_22 AC 74 ms
64,896 KB
testcase_23 AC 72 ms
64,512 KB
testcase_24 AC 73 ms
64,512 KB
testcase_25 AC 73 ms
64,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
p = 3 * pow(2, mod - 2, mod)

def solve(n):
    if n == 1:
        return 1
    ans = n * pow(2, n * (n - 1) // 2, mod)
    res = pow(p, n - 2, mod) * pow(2, (n - 1) * (n - 2) // 2, mod) * (n - 1)
    return (ans - res) % mod


T = int(input())
for _ in range(T):
    print(solve(int(input())))
0