結果

問題 No.2816 At Most Two Moves
ユーザー detteiuudetteiuu
提出日時 2024-07-25 19:23:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 1,146 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 67,588 KB
最終ジャッジ日時 2024-07-25 19:23:33
合計ジャッジ時間 3,906 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,164 KB
testcase_01 AC 60 ms
67,232 KB
testcase_02 AC 59 ms
66,304 KB
testcase_03 AC 60 ms
66,620 KB
testcase_04 AC 63 ms
66,976 KB
testcase_05 AC 66 ms
66,960 KB
testcase_06 AC 60 ms
66,144 KB
testcase_07 AC 63 ms
66,600 KB
testcase_08 AC 62 ms
66,908 KB
testcase_09 AC 61 ms
66,724 KB
testcase_10 AC 61 ms
66,768 KB
testcase_11 AC 60 ms
66,376 KB
testcase_12 AC 61 ms
66,628 KB
testcase_13 AC 62 ms
66,040 KB
testcase_14 AC 61 ms
66,028 KB
testcase_15 AC 62 ms
66,496 KB
testcase_16 AC 62 ms
66,276 KB
testcase_17 AC 62 ms
66,808 KB
testcase_18 AC 61 ms
66,836 KB
testcase_19 AC 62 ms
66,724 KB
testcase_20 AC 62 ms
67,588 KB
testcase_21 AC 67 ms
67,532 KB
testcase_22 AC 60 ms
66,216 KB
testcase_23 AC 62 ms
67,292 KB
testcase_24 AC 61 ms
66,424 KB
testcase_25 AC 61 ms
67,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
query = [int(input()) for _ in range(T)]

def inverse(n, d):
    return n * pow(d, MOD-2, MOD) % MOD

MOD = 998244353
for i in range(T):
    N = query[i]
    E = (1+((1-inverse(1, 2)*pow(inverse(3, 4), N-2, MOD)%MOD)%MOD)*(N-1)%MOD)%MOD
    print(E*pow(2, N*(N-1)//2, MOD)%MOD)
0