結果

問題 No.657 テトラナッチ数列 Easy
ユーザー YamaKasaYamaKasa
提出日時 2018-10-01 13:10:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 2,169 ms
コンパイル使用メモリ 75,500 KB
実行使用メモリ 62,388 KB
最終ジャッジ日時 2024-10-12 09:40:55
合計ジャッジ時間 6,745 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
57,988 KB
testcase_01 AC 149 ms
58,184 KB
testcase_02 AC 149 ms
58,048 KB
testcase_03 AC 150 ms
58,368 KB
testcase_04 AC 150 ms
58,296 KB
testcase_05 AC 257 ms
62,388 KB
testcase_06 AC 149 ms
58,196 KB
testcase_07 AC 151 ms
57,992 KB
testcase_08 AC 147 ms
58,292 KB
testcase_09 AC 270 ms
61,904 KB
testcase_10 AC 273 ms
61,888 KB
testcase_11 AC 277 ms
62,360 KB
testcase_12 AC 281 ms
62,132 KB
testcase_13 AC 289 ms
62,344 KB
testcase_14 AC 292 ms
62,084 KB
testcase_15 AC 288 ms
62,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int Q = scan.nextInt();
		int max = (int)Math.pow(10, 6) + 1;
		int[]T = new int[max];
		T[0] = 0;
		T[1] = 0;
		T[2] = 0;
		T[3] = 1;
		for(int i = 4; i < max; i++) {
			T[i] = (T[i - 1] + T[i - 2] + T[i - 3] + T[i - 4]) % 17;
		}
		StringBuilder sb = new StringBuilder();
		for(int i = 0; i < Q; i++) {
			int n = scan.nextInt();
			sb.append(T[n - 1]);
			sb.append("\n");
		}
		scan.close();
		System.out.print(sb.toString());
	}
}
0