結果
問題 | No.1754 T-block Tiling |
ユーザー | kys |
提出日時 | 2021-11-21 13:09:18 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 650 bytes |
コンパイル時間 | 426 ms |
コンパイル使用メモリ | 82,568 KB |
実行使用メモリ | 59,168 KB |
最終ジャッジ日時 | 2024-06-22 19:18:08 |
合計ジャッジ時間 | 709 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
58,956 KB |
testcase_01 | AC | 40 ms
59,168 KB |
ソースコード
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])