結果

問題 No.657 テトラナッチ数列 Easy
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-03-02 22:39:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 63,264 KB
最終ジャッジ日時 2024-06-22 04:02:03
合計ジャッジ時間 6,614 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
57,076 KB
testcase_01 AC 128 ms
58,140 KB
testcase_02 AC 114 ms
57,376 KB
testcase_03 AC 124 ms
58,112 KB
testcase_04 AC 130 ms
58,128 KB
testcase_05 AC 327 ms
62,928 KB
testcase_06 AC 126 ms
58,208 KB
testcase_07 AC 124 ms
58,184 KB
testcase_08 AC 125 ms
58,124 KB
testcase_09 AC 325 ms
63,112 KB
testcase_10 AC 333 ms
62,976 KB
testcase_11 AC 350 ms
63,200 KB
testcase_12 AC 339 ms
63,200 KB
testcase_13 AC 340 ms
62,828 KB
testcase_14 AC 344 ms
63,264 KB
testcase_15 AC 354 ms
62,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int[] ar = new int[1000000];
		ar[0] = 0;
		ar[1] = 0;
		ar[2] = 0;
		ar[3] = 1;
		ar[4] = ar[0]+ar[1]+ar[2]+ar[3];
		for (int i=5; i<=999999; i++) {
			ar[i] = (ar[i-1]+ar[i-2]+ar[i-3]+ar[i-4])%17;
		}
		
		int q = sc.nextInt();
		for (int i=0; i<q; i++) {
			out.println(ar[sc.nextInt()-1]);
		}
	}
}
0