結果

問題 No.657 テトラナッチ数列 Easy
ユーザー Pump0129Pump0129
提出日時 2018-04-22 19:18:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 1,150 bytes
コンパイル時間 2,450 ms
コンパイル使用メモリ 78,028 KB
実行使用メモリ 52,500 KB
最終ジャッジ日時 2024-06-27 07:02:48
合計ジャッジ時間 4,485 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,952 KB
testcase_01 AC 54 ms
37,100 KB
testcase_02 AC 53 ms
37,012 KB
testcase_03 AC 53 ms
37,200 KB
testcase_04 AC 109 ms
50,364 KB
testcase_05 AC 126 ms
39,832 KB
testcase_06 AC 53 ms
37,108 KB
testcase_07 AC 52 ms
36,804 KB
testcase_08 AC 123 ms
51,936 KB
testcase_09 AC 132 ms
40,512 KB
testcase_10 AC 131 ms
40,212 KB
testcase_11 AC 136 ms
40,644 KB
testcase_12 AC 156 ms
43,892 KB
testcase_13 AC 205 ms
52,500 KB
testcase_14 AC 197 ms
52,204 KB
testcase_15 AC 209 ms
52,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no657;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        PrintWriter out = new PrintWriter(System.out);

        int count = Integer.parseInt(br.readLine());
        int maxSize = 4;

        List<Integer> tet = new ArrayList<>();

        tet.add(0);
        tet.add(0);
        tet.add(0);
        tet.add(1);

        for (int c = 0; c < count; c++) {
            int n = Integer.parseInt(br.readLine());
            if (maxSize < n) {
                for (int i = maxSize; i < n; i++) {
                    tet.add((tet.get(i - 1) + tet.get(i - 2) + tet.get(i - 3) + tet.get(i - 4)) % 17);
                }
                maxSize = n;
            }

            out.println(tet.get(n - 1));
        }

        out.flush();
        out.close();
        br.close();
    }
}
0