結果
問題 | No.2600 Avator Height |
ユーザー | Theta |
提出日時 | 2024-10-01 17:16:09 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 828 bytes |
コンパイル時間 | 399 ms |
コンパイル使用メモリ | 82,408 KB |
実行使用メモリ | 1,235,028 KB |
最終ジャッジ日時 | 2024-10-01 17:16:18 |
合計ジャッジ時間 | 9,071 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
from functools import cache import sys sys.setrecursionlimit(10000000) @cache def fibonacci(N: int) -> int: if N in (1, 2): return 1 return fibonacci(N - 2) + fibonacci(N - 1) @cache def fibonacci_mod(N: int, mod: int) -> int: if N in (1, 2): return 1 return (fibonacci_mod(N - 2, mod) + fibonacci_mod(N - 1, mod)) % mod @cache def nacci_e(N: int, mod: int) -> int: if N == 1: return 1 if N == 2: return 3 return (nacci_e(N - 1, mod) + nacci_e(N - 2, mod)) % mod def calc_width_diff(N: int) -> int: MOD = 998244353 return ((5 * fibonacci_mod(N, MOD) ** 2) % MOD - nacci_e(N, MOD) ** 2) % MOD def main(): for _ in range(int(input())): N = int(input()) print(calc_width_diff(N)) if __name__ == "__main__": main()