結果

問題 No.657 テトラナッチ数列 Easy
ユーザー 37zigen37zigen
提出日時 2020-02-17 22:17:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 51,376 KB
最終ジャッジ日時 2024-10-06 15:16:24
合計ジャッジ時間 7,629 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
45,000 KB
testcase_01 AC 145 ms
44,984 KB
testcase_02 AC 142 ms
44,916 KB
testcase_03 AC 148 ms
45,120 KB
testcase_04 AC 144 ms
45,064 KB
testcase_05 AC 373 ms
51,328 KB
testcase_06 AC 154 ms
44,776 KB
testcase_07 AC 159 ms
44,920 KB
testcase_08 AC 150 ms
44,932 KB
testcase_09 AC 384 ms
51,240 KB
testcase_10 AC 376 ms
51,256 KB
testcase_11 AC 388 ms
51,280 KB
testcase_12 AC 394 ms
51,376 KB
testcase_13 AC 396 ms
51,224 KB
testcase_14 AC 382 ms
51,348 KB
testcase_15 AC 397 ms
50,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int Q=sc.nextInt();
		int[] T=new int[(int)1e6+10];
		T[4]=1;
		for(int i=5;i<T.length;++i) {
			T[i]=(T[i-1]+T[i-2]+T[i-3]+T[i-4])%17;
		}
		for(int i=0;i<Q;++i) {
			int n=sc.nextInt();
			System.out.println(T[n]);
		}
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0