結果

問題 No.657 テトラナッチ数列 Easy
ユーザー tentententen
提出日時 2020-09-04 16:32:59
言語 Java
(openjdk 23)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 62,224 KB
最終ジャッジ日時 2024-11-26 02:09:27
合計ジャッジ時間 6,304 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
56,920 KB
testcase_01 AC 136 ms
58,120 KB
testcase_02 AC 136 ms
57,836 KB
testcase_03 AC 135 ms
57,828 KB
testcase_04 AC 132 ms
58,140 KB
testcase_05 AC 251 ms
61,404 KB
testcase_06 AC 131 ms
58,196 KB
testcase_07 AC 139 ms
57,840 KB
testcase_08 AC 136 ms
57,852 KB
testcase_09 AC 243 ms
61,764 KB
testcase_10 AC 250 ms
61,432 KB
testcase_11 AC 248 ms
61,768 KB
testcase_12 AC 261 ms
61,732 KB
testcase_13 AC 252 ms
61,904 KB
testcase_14 AC 267 ms
62,224 KB
testcase_15 AC 262 ms
62,076 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