結果

問題 No.2600 Avator Height
ユーザー ⁣
提出日時 2024-07-24 16:14:47
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 13,330 ms
コンパイル使用メモリ 386,432 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-24 16:15:12
合計ジャッジ時間 24,710 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 287 ms
6,816 KB
testcase_02 AC 284 ms
6,940 KB
testcase_03 AC 283 ms
6,940 KB
testcase_04 AC 289 ms
6,940 KB
testcase_05 AC 290 ms
6,940 KB
testcase_06 AC 285 ms
6,940 KB
testcase_07 AC 286 ms
6,944 KB
testcase_08 AC 288 ms
6,940 KB
testcase_09 AC 287 ms
6,940 KB
testcase_10 AC 286 ms
6,944 KB
testcase_11 AC 290 ms
6,940 KB
testcase_12 AC 293 ms
6,944 KB
testcase_13 AC 290 ms
6,944 KB
testcase_14 AC 290 ms
6,940 KB
testcase_15 AC 289 ms
6,940 KB
testcase_16 AC 287 ms
6,944 KB
testcase_17 AC 291 ms
6,940 KB
testcase_18 AC 285 ms
6,940 KB
testcase_19 AC 288 ms
6,944 KB
testcase_20 AC 286 ms
6,940 KB
testcase_21 AC 283 ms
6,944 KB
testcase_22 AC 283 ms
6,940 KB
testcase_23 AC 285 ms
6,944 KB
testcase_24 AC 266 ms
6,940 KB
testcase_25 AC 268 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn g() -> usize {
	let mut s = String::new();
	std::io::stdin().read_line(&mut s).ok();
	s.trim().parse().unwrap()
}
fn main() {
	let (d, mut r, mut e) = (998244353u64, vec![0; 200001], vec![0; 200001]);
	(r[1], r[2], e[1], e[2]) = (1, 1, 1, 3);
	for i in 3..r.len() {
		r[i] = (r[i - 1] + r[i - 2]) % d;
		e[i] = (e[i - 1] + e[i - 2]) % d;
	}
	for _ in 0..g() {
		let n = g();
		println!("{}", ((5 * r[n] * r[n] + d) - e[n] * e[n] % d) % d)
	}
}
0