結果

問題 No.2600 Avator Height
ユーザー YwestbuilderkYwestbuilderk
提出日時 2024-01-22 18:31:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 866 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-09-28 06:27:47
合計ジャッジ時間 12,588 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,400 KB
testcase_01 AC 354 ms
6,400 KB
testcase_02 AC 348 ms
6,400 KB
testcase_03 AC 364 ms
6,400 KB
testcase_04 AC 352 ms
6,528 KB
testcase_05 AC 352 ms
6,400 KB
testcase_06 AC 352 ms
6,400 KB
testcase_07 AC 346 ms
6,400 KB
testcase_08 AC 356 ms
6,400 KB
testcase_09 AC 349 ms
6,528 KB
testcase_10 AC 354 ms
6,400 KB
testcase_11 AC 350 ms
6,400 KB
testcase_12 AC 352 ms
6,528 KB
testcase_13 AC 353 ms
6,400 KB
testcase_14 AC 347 ms
6,400 KB
testcase_15 AC 350 ms
6,400 KB
testcase_16 AC 349 ms
6,528 KB
testcase_17 AC 348 ms
6,400 KB
testcase_18 AC 379 ms
6,528 KB
testcase_19 AC 366 ms
6,400 KB
testcase_20 AC 352 ms
6,400 KB
testcase_21 AC 363 ms
6,400 KB
testcase_22 AC 358 ms
6,400 KB
testcase_23 AC 350 ms
6,400 KB
testcase_24 AC 297 ms
6,400 KB
testcase_25 AC 336 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
#define int long long
const int I = 998244353;
signed main(){
	int q;
	cin >> q;
	vector<int> r(200009),e(200009);
	r[1] = 1,r[2] = 1;
	for(int i = 3;i <= 200000;i++){ r[i] = r[i - 1] + r[i - 2];r[i] %= I;}
	e[1] = 1,e[2] = 3;
	for(int i = 3;i <= 200000;i++) {e[i] = e[i - 1] + e[i - 2];e[i] %= I;}
	for(int i = 0;i < q;i++){
		int k;
		cin >> k;
		int K =  (5*r[k] * r[k] - e[k]*e[k] + I) % I;
		if(K < 0) K += I;
		cout << K << endl;
	}
}
0