結果

問題 No.1754 T-block Tiling
ユーザー mesame3993mesame3993
提出日時 2021-11-20 14:20:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-06-11 15:22:58
合計ジャッジ時間 895 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial
def com(n,r):
  return factorial(n)//factorial(r)//factorial(n-r)
def main():
  from sys import stdin
  readline=stdin.readline
  t = int(readline())
  mod = 998244353
  for i in range(t):
    n = int(readline())
    if n == 1:
      print(2)
      continue
    ans = 0
    for r in range(n):
      ans += 2**r * com(n-1,r)
      ans %= mod
    print(ans*2%mod)
main()
0