結果
問題 | No.2600 Avator Height |
ユーザー | Theta |
提出日時 | 2024-10-01 17:16:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 828 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-10-01 17:16:32 |
合計ジャッジ時間 | 3,935 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | AC | 1,237 ms
10,880 KB |
testcase_25 | RE | - |
ソースコード
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()