結果

問題 No.2600 Avator Height
ユーザー forest3forest3
提出日時 2024-01-13 15:53:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 1,641 ms
コンパイル使用メモリ 168,116 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-09-28 01:31:54
合計ジャッジ時間 11,669 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,400 KB
testcase_01 AC 306 ms
6,400 KB
testcase_02 AC 312 ms
6,272 KB
testcase_03 AC 320 ms
6,400 KB
testcase_04 AC 315 ms
6,400 KB
testcase_05 AC 314 ms
6,400 KB
testcase_06 AC 306 ms
6,400 KB
testcase_07 AC 298 ms
6,400 KB
testcase_08 AC 309 ms
6,272 KB
testcase_09 AC 310 ms
6,400 KB
testcase_10 AC 309 ms
6,272 KB
testcase_11 AC 313 ms
6,400 KB
testcase_12 AC 312 ms
6,400 KB
testcase_13 AC 319 ms
6,272 KB
testcase_14 AC 312 ms
6,272 KB
testcase_15 AC 318 ms
6,272 KB
testcase_16 AC 323 ms
6,400 KB
testcase_17 AC 310 ms
6,400 KB
testcase_18 AC 313 ms
6,400 KB
testcase_19 AC 315 ms
6,400 KB
testcase_20 AC 326 ms
6,400 KB
testcase_21 AC 313 ms
6,400 KB
testcase_22 AC 311 ms
6,272 KB
testcase_23 AC 316 ms
6,400 KB
testcase_24 AC 270 ms
6,272 KB
testcase_25 AC 308 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
#define rep(i, a, n) for(int i = a; i < n; i++)

int main() {
	int Q;
	cin >> Q;
	ll ma = 2e5, MOD = 998244353;
	vector<ll> r(ma), e(ma);
	r[0] = 1;
	r[1] = 1;
	e[0] = 1;
	e[1] = 3;
	rep(i, 2, ma) {
		r[i] = (r[i - 1] + r[i - 2]) % MOD;
		e[i] = (e[i - 1] + e[i - 2]) % MOD;
	}
	rep(i, 0, Q) {
		int n;
		cin >> n;
		n--;
		ll rx = r[n];
		ll ex = e[n];
		ll ans = rx * rx % MOD * 5 % MOD;
		ll s = ex * ex % MOD;
		ans = (ans - s + MOD) % MOD;
		cout << ans << endl;
	}
}
0