結果

問題 No.657 テトラナッチ数列 Easy
ユーザー kokatsukokatsu
提出日時 2021-10-12 20:49:13
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 2,398 ms
コンパイル使用メモリ 203,820 KB
実行使用メモリ 8,144 KB
最終ジャッジ日時 2024-06-22 12:47:25
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 7 ms
7,680 KB
testcase_02 AC 7 ms
6,960 KB
testcase_03 AC 7 ms
7,696 KB
testcase_04 AC 8 ms
7,232 KB
testcase_05 AC 11 ms
7,236 KB
testcase_06 AC 7 ms
6,944 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 7 ms
7,860 KB
testcase_09 AC 11 ms
7,224 KB
testcase_10 AC 13 ms
6,944 KB
testcase_11 AC 12 ms
6,940 KB
testcase_12 AC 14 ms
8,144 KB
testcase_13 AC 14 ms
6,948 KB
testcase_14 AC 14 ms
7,552 KB
testcase_15 AC 14 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int Q;
    readf("%d\n", Q);

    int M = 17;

    int nmax = 10 ^^ 6 + 1;
    auto tetranacci = new int[](nmax);
    tetranacci[4] = 1;
    int t = 1;
    foreach (i; 5 .. nmax) {
        tetranacci[i] = t;
        t = (t + tetranacci[i] - tetranacci[i-4] + M) % M;
    }

    foreach (i; 0 .. Q) {
        int n;
        readf("%d\n", n);

        tetranacci[n].writeln;
    }
}
0