結果

問題 No.658 テトラナッチ数列 Hard
ユーザー tentententen
提出日時 2020-09-04 16:42:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 1,975 ms
コンパイル使用メモリ 75,416 KB
実行使用メモリ 47,556 KB
最終ジャッジ日時 2024-11-26 02:42:53
合計ジャッジ時間 5,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,128 KB
testcase_01 AC 114 ms
41,572 KB
testcase_02 AC 115 ms
41,060 KB
testcase_03 AC 128 ms
41,276 KB
testcase_04 AC 249 ms
47,328 KB
testcase_05 AC 243 ms
47,024 KB
testcase_06 AC 256 ms
47,340 KB
testcase_07 AC 261 ms
47,036 KB
testcase_08 AC 261 ms
46,620 KB
testcase_09 AC 272 ms
47,556 KB
testcase_10 AC 272 ms
47,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int MAX = 5000;
    static int MOD = 4912;
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int[] arr = new int[MAX];
    	arr[3] = 1;
    	HashMap<Integer, Integer> map = new HashMap<>();
    	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++) {
    	    long x = sc.nextLong() - 1;
    	    int idx;
    	    if (x >= 4) {
    	        idx = (int)((x - 4) % MOD + 4);
    	    } else {
    	        idx = (int)x;
    	    }
    	    sb.append(arr[idx]).append("\n");
    	}
    	System.out.print(sb);
    }
}
0