結果

問題 No.658 テトラナッチ数列 Hard
ユーザー 37zigen37zigen
提出日時 2020-03-22 06:20:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,172 ms / 2,000 ms
コード長 1,194 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 78,140 KB
実行使用メモリ 58,404 KB
最終ジャッジ日時 2024-06-06 22:02:05
合計ジャッジ時間 9,845 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,248 KB
testcase_01 AC 123 ms
41,036 KB
testcase_02 AC 124 ms
41,532 KB
testcase_03 AC 164 ms
41,892 KB
testcase_04 AC 635 ms
48,456 KB
testcase_05 AC 687 ms
47,924 KB
testcase_06 AC 756 ms
51,764 KB
testcase_07 AC 784 ms
52,464 KB
testcase_08 AC 917 ms
57,800 KB
testcase_09 AC 1,146 ms
58,144 KB
testcase_10 AC 1,172 ms
58,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.math.BigDecimal;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		long t = System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis() - t);
	}
	
	final int MOD=17;

	int[][] mul(int[][] a,int[][] b) {
		int[][] ret=new int[a.length][b[0].length];
		for(int i=0;i<a.length;++i)
			for(int j=0;j<b[i].length;++j)
				for(int k=0;k<a[i].length;++k)
					ret[i][j]=(ret[i][j]+a[i][k]*b[k][j]%MOD)%MOD;
		return ret;
	}
	
	int[][] pow(int[][] a,long n) {
		int[][] ret=new int[a.length][a.length];
		for(int i=0;i<a.length;++i)ret[i][i]=1;
		for(;n>0;n>>=1,a=mul(a,a))if(n%2==1)ret=mul(ret,a);
		return ret;
	}
	
	
	void run() {
		Scanner sc = new Scanner(System.in);
		int Q=sc.nextInt();
		int[][] mat=new int[][] {{1,1,1,1},{1,0,0,0},{0,1,0,0},{0,0,1,0}};
		int[][] vec=new int[][] {{1},{0},{0},{0}};
		for(int q=0;q<Q;++q) {			
			long n=sc.nextLong();
			System.out.println(mul(pow(mat,n-1),vec)[3][0]%17);
		}
	}


	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0