結果

問題 No.657 テトラナッチ数列 Easy
ユーザー GrenacheGrenache
提出日時 2018-03-04 00:22:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 3,552 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 51,936 KB
最終ジャッジ日時 2024-07-05 05:08:31
合計ジャッジ時間 8,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
45,500 KB
testcase_01 AC 146 ms
45,540 KB
testcase_02 AC 144 ms
45,456 KB
testcase_03 AC 144 ms
45,432 KB
testcase_04 AC 146 ms
45,280 KB
testcase_05 AC 294 ms
51,652 KB
testcase_06 AC 144 ms
45,168 KB
testcase_07 AC 147 ms
45,220 KB
testcase_08 AC 146 ms
45,220 KB
testcase_09 AC 301 ms
51,720 KB
testcase_10 AC 319 ms
51,708 KB
testcase_11 AC 318 ms
51,936 KB
testcase_12 AC 316 ms
51,372 KB
testcase_13 AC 318 ms
51,648 KB
testcase_14 AC 326 ms
51,744 KB
testcase_15 AC 321 ms
51,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder657 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int q = sc.nextInt();

		int[] n = new int[q];
		for (int i = 0; i < q; i++) {
			n[i] = sc.nextInt();
		}

		int[] t = new int[1_000_000];
		t[3] = 1;
		for (int i = 4; i < 1_000_000; i++) {
			t[i] = (t[i - 1] + t[i - 2] + t[i - 3] + t[i - 4]) % 17;
		}

		for (int i = 0; i < q; i++) {
			pr.println(t[n[i] - 1]);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0