結果

問題 No.657 テトラナッチ数列 Easy
ユーザー silviasetitechsilviasetitech
提出日時 2020-03-05 21:56:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 1,131 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 77,208 KB
実行使用メモリ 62,812 KB
最終ジャッジ日時 2024-10-14 02:09:41
合計ジャッジ時間 6,392 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
58,052 KB
testcase_01 AC 142 ms
58,408 KB
testcase_02 AC 142 ms
58,368 KB
testcase_03 AC 139 ms
58,216 KB
testcase_04 AC 140 ms
58,052 KB
testcase_05 AC 310 ms
61,908 KB
testcase_06 AC 144 ms
58,564 KB
testcase_07 AC 131 ms
57,360 KB
testcase_08 AC 129 ms
56,964 KB
testcase_09 AC 279 ms
62,572 KB
testcase_10 AC 304 ms
62,812 KB
testcase_11 AC 294 ms
62,804 KB
testcase_12 AC 288 ms
62,640 KB
testcase_13 AC 287 ms
62,592 KB
testcase_14 AC 289 ms
62,264 KB
testcase_15 AC 306 ms
62,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 *
 * @author silviase
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Tetranacci solver = new Tetranacci();
        solver.solve(1, in, out);
        out.close();
    }

    static class Tetranacci {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            int q = in.nextInt();
            int[] t = new int[1000005];
            t[1] = 0;
            t[2] = 0;
            t[3] = 0;
            t[4] = 1;
            for (int i = 5; i <= 1000000; i++) {
                t[i] = (t[i - 1] + t[i - 2] + t[i - 3] + t[i - 4]) % 17;
            }

            for (int i = 0; i < q; i++) {
                out.println(t[in.nextInt()]);
            }


        }

    }
}

0