結果

問題 No.2600 Avator Height
ユーザー MottchanMottchan
提出日時 2024-01-13 18:03:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,152 KB
最終ジャッジ日時 2024-09-28 01:40:04
合計ジャッジ時間 6,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,872 KB
testcase_01 AC 140 ms
78,800 KB
testcase_02 AC 139 ms
78,592 KB
testcase_03 AC 143 ms
78,312 KB
testcase_04 AC 137 ms
78,208 KB
testcase_05 AC 142 ms
78,208 KB
testcase_06 AC 136 ms
78,336 KB
testcase_07 AC 132 ms
78,704 KB
testcase_08 AC 133 ms
78,608 KB
testcase_09 AC 148 ms
78,208 KB
testcase_10 AC 134 ms
78,208 KB
testcase_11 AC 139 ms
78,080 KB
testcase_12 AC 142 ms
78,648 KB
testcase_13 AC 134 ms
78,464 KB
testcase_14 AC 137 ms
78,528 KB
testcase_15 AC 144 ms
78,464 KB
testcase_16 AC 137 ms
78,592 KB
testcase_17 AC 142 ms
78,976 KB
testcase_18 AC 138 ms
78,880 KB
testcase_19 AC 141 ms
78,464 KB
testcase_20 AC 139 ms
78,848 KB
testcase_21 AC 141 ms
78,336 KB
testcase_22 AC 138 ms
78,464 KB
testcase_23 AC 136 ms
78,720 KB
testcase_24 AC 112 ms
79,152 KB
testcase_25 AC 123 ms
78,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
sys.set_int_max_str_digits(0)
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd, lcm, factorial, perm, comb
from itertools import product, permutations, combinations
from functools import lru_cache #@lru_cache(maxsize=128)
#重複あり:list(product(list('123'),repeat = 2)),重複なし:list(permutations(list('123')))
MOD = 998244353

ans = [0]*(2*10**5+2)

tp1 = [1,1]
tp2 = [1,3]
ans[0] = 4
ans[1] = -4

for i in range(2*10**5):
    a = (tp1[0] + tp1[1])%MOD
    b = (tp2[0] + tp2[1])%MOD
    ans[i+2] = pow(a,2) * 5 - pow(b,2)
    tp1[0] = tp1[1]
    tp2[0] = tp2[1]
    tp1[1] = a
    tp2[1] = b

n = int(input())
for _ in range(n):
    print(ans[int(input())-1] % MOD)
0