結果

問題 No.1754 T-block Tiling
ユーザー kyskys
提出日時 2021-11-21 13:09:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 86,676 KB
実行使用メモリ 75,628 KB
最終ジャッジ日時 2023-09-04 21:50:20
合計ジャッジ時間 943 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,628 KB
testcase_01 AC 80 ms
75,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def iinput(): return int(input())
def sinput(): return input().rstrip()
def i0input(): return int(input()) - 1
def linput(): return list(input().split())
def liinput(): return list(map(int, input().split()))
def miinput(): return map(int, input().split())
def li0input(): return list(map(lambda x: int(x) - 1, input().split()))
def mi0input(): return map(lambda x: int(x) - 1, input().split())
INF = 10**20
MOD = 998244353

dp = [2] * (101)

for i in range(2, 101):
    for j in range(1, i):
        dp[i] += dp[j] * 2 % MOD
        dp[i] %= MOD

T = iinput()
for _ in [0] * T:
    N = iinput()
    print(dp[N])
0