結果

問題 No.2816 At Most Two Moves
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-04-29 16:25:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 65,024 KB
最終ジャッジ日時 2024-07-19 20:50:12
合計ジャッジ時間 2,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 69 ms
64,128 KB
testcase_02 AC 66 ms
64,512 KB
testcase_03 AC 60 ms
64,128 KB
testcase_04 AC 63 ms
64,640 KB
testcase_05 AC 62 ms
64,640 KB
testcase_06 AC 63 ms
64,512 KB
testcase_07 AC 63 ms
64,128 KB
testcase_08 AC 65 ms
64,128 KB
testcase_09 AC 65 ms
64,256 KB
testcase_10 AC 64 ms
64,640 KB
testcase_11 AC 64 ms
64,384 KB
testcase_12 AC 63 ms
64,640 KB
testcase_13 AC 62 ms
64,384 KB
testcase_14 AC 62 ms
64,648 KB
testcase_15 AC 62 ms
64,640 KB
testcase_16 AC 64 ms
64,512 KB
testcase_17 AC 69 ms
64,256 KB
testcase_18 AC 62 ms
64,256 KB
testcase_19 AC 63 ms
65,024 KB
testcase_20 AC 64 ms
64,640 KB
testcase_21 AC 62 ms
64,256 KB
testcase_22 AC 63 ms
64,256 KB
testcase_23 AC 64 ms
64,384 KB
testcase_24 AC 65 ms
64,256 KB
testcase_25 AC 63 ms
64,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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