結果

問題 No.2600 Avator Height
ユーザー ID 21712ID 21712
提出日時 2024-11-11 21:33:44
言語 Go
(1.22.1)
結果
AC  
実行時間 478 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 13,913 ms
コンパイル使用メモリ 227,304 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-11 21:34:13
合計ジャッジ時間 29,289 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,400 KB
testcase_01 AC 444 ms
10,496 KB
testcase_02 AC 448 ms
10,496 KB
testcase_03 AC 442 ms
10,496 KB
testcase_04 AC 468 ms
10,496 KB
testcase_05 AC 442 ms
10,368 KB
testcase_06 AC 440 ms
10,496 KB
testcase_07 AC 444 ms
10,368 KB
testcase_08 AC 444 ms
10,368 KB
testcase_09 AC 468 ms
10,368 KB
testcase_10 AC 442 ms
10,496 KB
testcase_11 AC 444 ms
10,368 KB
testcase_12 AC 454 ms
10,496 KB
testcase_13 AC 433 ms
10,496 KB
testcase_14 AC 472 ms
10,496 KB
testcase_15 AC 437 ms
10,240 KB
testcase_16 AC 440 ms
10,496 KB
testcase_17 AC 475 ms
10,496 KB
testcase_18 AC 448 ms
10,496 KB
testcase_19 AC 440 ms
10,368 KB
testcase_20 AC 444 ms
10,496 KB
testcase_21 AC 442 ms
10,496 KB
testcase_22 AC 478 ms
10,368 KB
testcase_23 AC 447 ms
10,368 KB
testcase_24 AC 380 ms
7,936 KB
testcase_25 AC 415 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

var rs [2e5+1]int64
var es [2e5+1]int64
var ans [2e5+1]int64

const m=998244353

func init() {
	rs[1]=1
	rs[2]=1
	es[1]=1
	es[2]=3
	for i:=3;i<=2e5;i++ {
		rs[i]=(rs[i-1]+rs[i-2])%m
		es[i]=(es[i-1]+es[i-2])%m
	}
	for i:=range ans[:] {
		rs[i]*=rs[i]
		rs[i]%=m
		es[i]*=es[i]
		es[i]%=m
		ans[i]=(5*rs[i]%m-es[i]+m)%m
	}
}

func main() {
	rd:=bf.NewReader(Stdin)
	var q int
	Fscan(rd,&q)
	for ;q>0;q-- {
		var n int
		Fscan(rd,&n)
		Println(ans[n])
	}
}
0