結果

問題 No.657 テトラナッチ数列 Easy
ユーザー htensaihtensai
提出日時 2019-11-13 09:09:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 75,232 KB
実行使用メモリ 50,944 KB
最終ジャッジ日時 2024-09-21 21:03:48
合計ジャッジ時間 5,784 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
45,272 KB
testcase_01 AC 139 ms
45,128 KB
testcase_02 AC 139 ms
45,268 KB
testcase_03 AC 132 ms
45,132 KB
testcase_04 AC 133 ms
44,868 KB
testcase_05 AC 237 ms
50,284 KB
testcase_06 AC 133 ms
45,088 KB
testcase_07 AC 133 ms
45,124 KB
testcase_08 AC 132 ms
44,940 KB
testcase_09 AC 257 ms
50,800 KB
testcase_10 AC 254 ms
50,384 KB
testcase_11 AC 269 ms
50,700 KB
testcase_12 AC 256 ms
50,696 KB
testcase_13 AC 261 ms
50,312 KB
testcase_14 AC 258 ms
50,872 KB
testcase_15 AC 268 ms
50,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 17;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int q = sc.nextInt();
		int[] arr = new int[1000001];
		arr[4] = 1;
		for (int i = 5; i <= 1000000; i++) {
		    arr[i] = (arr[i - 1] + arr[i - 2] + arr[i - 3] + arr[i - 4]) % MOD;
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < q; i++) {
		    sb.append(arr[sc.nextInt()]).append("\n");
		}
		System.out.print(sb);
  }
 }
0