結果

問題 No.2600 Avator Height
ユーザー InTheBloomInTheBloom
提出日時 2024-01-12 21:26:26
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 3,172 ms
コンパイル使用メモリ 172,304 KB
実行使用メモリ 11,848 KB
最終ジャッジ日時 2024-09-27 21:11:36
合計ジャッジ時間 8,931 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,888 KB
testcase_01 AC 120 ms
8,960 KB
testcase_02 AC 120 ms
8,832 KB
testcase_03 AC 120 ms
8,960 KB
testcase_04 AC 122 ms
8,832 KB
testcase_05 AC 122 ms
8,832 KB
testcase_06 AC 120 ms
8,960 KB
testcase_07 AC 121 ms
8,960 KB
testcase_08 AC 120 ms
8,832 KB
testcase_09 AC 120 ms
8,960 KB
testcase_10 AC 119 ms
10,572 KB
testcase_11 AC 119 ms
10,036 KB
testcase_12 AC 118 ms
11,848 KB
testcase_13 AC 121 ms
10,700 KB
testcase_14 AC 121 ms
10,444 KB
testcase_15 AC 121 ms
11,348 KB
testcase_16 AC 120 ms
10,932 KB
testcase_17 AC 120 ms
10,420 KB
testcase_18 AC 120 ms
10,708 KB
testcase_19 AC 119 ms
10,940 KB
testcase_20 AC 121 ms
10,652 KB
testcase_21 AC 122 ms
10,916 KB
testcase_22 AC 120 ms
11,268 KB
testcase_23 AC 118 ms
10,756 KB
testcase_24 AC 94 ms
11,084 KB
testcase_25 AC 103 ms
10,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    // 前計算
    const long MOD = 998244353;
    const int MAX = 2*10^^5;
    long[] R = new long[](MAX+1);
    long[] E = new long[](MAX+1);
    R[1] = R[2] = 1;
    E[1] = 1, E[2] = 3;

    for (int i = 3; i <= MAX; i++) {
        R[i] = (R[i-1] + R[i-2]) % MOD;
        E[i] = (E[i-1] + E[i-2]) % MOD;
    }

    int Q = readln.chomp.to!int;
    foreach (_; 0..Q) {
        int N = readln.chomp.to!int;
        long r = R[N] * R[N] % MOD;
        long e = E[N] * E[N] % MOD;
        r = r * 5 % MOD;
        writeln((MOD + r - e) % MOD);
    }
}

void read (T...) (string S, ref T args) {
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0