結果

問題 No.2816 At Most Two Moves
ユーザー ShirotsumeShirotsume
提出日時 2024-07-19 23:11:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 64,128 KB
最終ジャッジ日時 2024-07-19 23:11:51
合計ジャッジ時間 2,981 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,552 KB
testcase_01 AC 62 ms
63,872 KB
testcase_02 AC 67 ms
63,616 KB
testcase_03 AC 62 ms
63,872 KB
testcase_04 AC 63 ms
63,488 KB
testcase_05 AC 69 ms
63,488 KB
testcase_06 AC 63 ms
63,632 KB
testcase_07 AC 61 ms
63,616 KB
testcase_08 AC 62 ms
63,848 KB
testcase_09 AC 66 ms
63,616 KB
testcase_10 AC 69 ms
63,616 KB
testcase_11 AC 68 ms
64,128 KB
testcase_12 AC 92 ms
63,744 KB
testcase_13 AC 65 ms
64,128 KB
testcase_14 AC 60 ms
63,616 KB
testcase_15 AC 63 ms
63,872 KB
testcase_16 AC 60 ms
63,744 KB
testcase_17 AC 68 ms
63,616 KB
testcase_18 AC 61 ms
63,616 KB
testcase_19 AC 62 ms
63,616 KB
testcase_20 AC 61 ms
63,616 KB
testcase_21 AC 64 ms
63,488 KB
testcase_22 AC 63 ms
63,616 KB
testcase_23 AC 63 ms
63,616 KB
testcase_24 AC 60 ms
63,772 KB
testcase_25 AC 60 ms
63,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353
memo = {}

def solve():
    n = ii()
    i2 = pow(2, mod - 2, mod)
    i43 = 3 * pow(4, mod - 2, mod)
    i43 %= mod
    ans = 1 #0は0
    ans += (n - 1) * i2
    ans %= mod
    #ある頂点への最短距離が2である→直接の辺は逆向きであり,かつある頂点vであって,0→v→1という経路がある
    if n >= 2:
        cnt = i2 * (1 - pow(i43, n - 2, mod))
        ans += (n - 1) * cnt
        ans %= mod
    ans *= pow(2, n * (n - 1) // 2, mod)
    ans %= mod
    print(ans)
    
for _ in range(ii()):
    solve()
    
    
    
0