結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
42,648 KB
testcase_01 AC 53 ms
37,128 KB
testcase_02 AC 52 ms
36,812 KB
testcase_03 AC 53 ms
36,788 KB
testcase_04 AC 191 ms
66,692 KB
testcase_05 AC 119 ms
39,892 KB
testcase_06 AC 53 ms
36,900 KB
testcase_07 AC 53 ms
37,212 KB
testcase_08 AC 212 ms
67,828 KB
testcase_09 AC 129 ms
40,100 KB
testcase_10 AC 210 ms
40,528 KB
testcase_11 AC 204 ms
40,716 KB
testcase_12 AC 755 ms
50,148 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no657;

import java.io.*;
import java.util.LinkedList;

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

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

        LinkedList<Integer> tet = new LinkedList<>();

        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;
            }

            bw.write(tet.get(n - 1).toString());
            bw.newLine();
        }

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