結果

問題 No.657 テトラナッチ数列 Easy
ユーザー Mcpu3Mcpu3
提出日時 2018-08-28 00:01:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 51,972 KB
最終ジャッジ日時 2024-07-05 20:58:53
合計ジャッジ時間 6,070 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
45,232 KB
testcase_01 AC 118 ms
45,600 KB
testcase_02 AC 136 ms
45,388 KB
testcase_03 AC 135 ms
45,688 KB
testcase_04 AC 130 ms
45,284 KB
testcase_05 AC 316 ms
51,972 KB
testcase_06 AC 136 ms
44,712 KB
testcase_07 AC 137 ms
45,492 KB
testcase_08 AC 121 ms
45,056 KB
testcase_09 AC 326 ms
51,552 KB
testcase_10 AC 325 ms
51,464 KB
testcase_11 AC 328 ms
51,760 KB
testcase_12 AC 339 ms
50,552 KB
testcase_13 AC 337 ms
51,692 KB
testcase_14 AC 330 ms
51,652 KB
testcase_15 AC 327 ms
51,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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