結果

問題 No.2816 At Most Two Moves
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-13 11:55:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 67,456 KB
最終ジャッジ日時 2024-07-19 20:50:17
合計ジャッジ時間 2,855 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 66 ms
67,456 KB
testcase_02 AC 66 ms
66,816 KB
testcase_03 AC 66 ms
67,072 KB
testcase_04 AC 70 ms
67,200 KB
testcase_05 AC 79 ms
67,200 KB
testcase_06 AC 73 ms
67,328 KB
testcase_07 AC 69 ms
67,328 KB
testcase_08 AC 68 ms
67,456 KB
testcase_09 AC 69 ms
66,944 KB
testcase_10 AC 68 ms
67,200 KB
testcase_11 AC 68 ms
67,456 KB
testcase_12 AC 67 ms
66,944 KB
testcase_13 AC 69 ms
66,944 KB
testcase_14 AC 67 ms
67,200 KB
testcase_15 AC 68 ms
66,944 KB
testcase_16 AC 68 ms
67,200 KB
testcase_17 AC 68 ms
67,328 KB
testcase_18 AC 67 ms
67,072 KB
testcase_19 AC 68 ms
67,072 KB
testcase_20 AC 67 ms
67,328 KB
testcase_21 AC 67 ms
66,944 KB
testcase_22 AC 73 ms
66,944 KB
testcase_23 AC 72 ms
66,944 KB
testcase_24 AC 69 ms
67,456 KB
testcase_25 AC 69 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
	N=int(input())
	print((((1-(pow(2,-1,998244353)*pow(pow(4,-1,998244353)*3,N-2,998244353)))*(N-1)+1)*pow(2,N*(N-1)//2,998244353))%998244353)
0