結果

問題 No.657 テトラナッチ数列 Easy
ユーザー tentententen
提出日時 2020-09-04 16:32:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 2,531 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 51,336 KB
最終ジャッジ日時 2024-05-04 14:13:54
合計ジャッジ時間 5,640 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
45,520 KB
testcase_01 AC 120 ms
45,632 KB
testcase_02 AC 117 ms
45,504 KB
testcase_03 AC 121 ms
45,452 KB
testcase_04 AC 113 ms
45,560 KB
testcase_05 AC 222 ms
50,900 KB
testcase_06 AC 117 ms
45,552 KB
testcase_07 AC 114 ms
45,716 KB
testcase_08 AC 127 ms
45,324 KB
testcase_09 AC 237 ms
51,104 KB
testcase_10 AC 248 ms
51,316 KB
testcase_11 AC 234 ms
51,280 KB
testcase_12 AC 232 ms
51,336 KB
testcase_13 AC 245 ms
51,004 KB
testcase_14 AC 236 ms
51,256 KB
testcase_15 AC 239 ms
51,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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