結果

問題 No.657 テトラナッチ数列 Easy
ユーザー jp_stejp_ste
提出日時 2018-06-03 03:37:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 65,756 KB
最終ジャッジ日時 2024-06-30 09:11:39
合計ジャッジ時間 7,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
60,156 KB
testcase_01 AC 161 ms
59,972 KB
testcase_02 AC 156 ms
60,096 KB
testcase_03 AC 158 ms
60,228 KB
testcase_04 AC 156 ms
60,084 KB
testcase_05 AC 377 ms
65,372 KB
testcase_06 AC 159 ms
60,224 KB
testcase_07 AC 158 ms
60,152 KB
testcase_08 AC 156 ms
59,968 KB
testcase_09 AC 370 ms
65,320 KB
testcase_10 AC 393 ms
65,328 KB
testcase_11 AC 387 ms
65,300 KB
testcase_12 AC 396 ms
65,296 KB
testcase_13 AC 388 ms
65,600 KB
testcase_14 AC 386 ms
65,756 KB
testcase_15 AC 401 ms
65,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		
		long dp[] = new long[1000001];
		dp[4] = 1;
		for(int i=5; i<1000001; i++) {
			dp[i] = (dp[i-1] + dp[i-2] + dp[i-3] + dp[i-4]) % 17;
		}
		
		try (Scanner scan = new Scanner(System.in)) {
			int q = scan.nextInt();
			for(int i=0; i<q; i++) {
				int n = scan.nextInt();
				System.out.println(dp[n]);
			}
		}
	}
}
0