結果

問題 No.344 ある無理数の累乗
ユーザー hiromi_ayasehiromi_ayase
提出日時 2016-02-13 06:18:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 77,068 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-09-22 06:11:35
合計ジャッジ時間 6,944 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,032 KB
testcase_01 AC 131 ms
53,936 KB
testcase_02 AC 130 ms
54,276 KB
testcase_03 AC 114 ms
52,896 KB
testcase_04 AC 123 ms
53,876 KB
testcase_05 AC 127 ms
54,084 KB
testcase_06 AC 126 ms
53,848 KB
testcase_07 AC 125 ms
54,000 KB
testcase_08 AC 116 ms
52,704 KB
testcase_09 AC 128 ms
54,104 KB
testcase_10 AC 128 ms
54,144 KB
testcase_11 AC 128 ms
54,272 KB
testcase_12 AC 131 ms
53,996 KB
testcase_13 AC 115 ms
52,988 KB
testcase_14 AC 115 ms
52,784 KB
testcase_15 AC 127 ms
54,008 KB
testcase_16 AC 124 ms
53,984 KB
testcase_17 AC 114 ms
53,052 KB
testcase_18 AC 125 ms
54,308 KB
testcase_19 AC 126 ms
53,948 KB
testcase_20 AC 125 ms
54,012 KB
testcase_21 AC 128 ms
53,920 KB
testcase_22 AC 127 ms
54,184 KB
testcase_23 AC 115 ms
52,856 KB
testcase_24 AC 125 ms
54,140 KB
testcase_25 AC 126 ms
54,096 KB
testcase_26 AC 125 ms
54,148 KB
testcase_27 AC 127 ms
53,992 KB
testcase_28 AC 128 ms
54,112 KB
testcase_29 AC 126 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {

		Scanner scanner  = new Scanner(System.in);
		int n = scanner.nextInt();
		int orgN = n;
		
		long[] x = {1, 0, 0, 1};
		long[] k = {1, 1, 3, 1};
		
		long[] tmp = k;
		while (n > 0) {
			if (n % 2 == 0) {
				mul(tmp, tmp, 1000);
				n >>= 1;
			} else {
				mul(x, tmp, 1000);
				n --;
			}
		}
		long ans = (x[0] * 2 - ((orgN % 2 == 0) ? 1 : 0)) % 1000;
		System.out.println(ans);
	}

	public static void mul(long[] mat1, long[] mat2, long mod) {
		long a = mat1[0];
		long b = mat1[1];
		long c = mat1[2];
		long d = mat1[3];

		long e = mat2[0];
		long f = mat2[1];
		long g = mat2[2];
		long h = mat2[3];

		mat1[0] = (a * e + b * g) % mod;
		mat1[1] = (a * f + b * h) % mod;
		mat1[2] = (c * e + d * g) % mod;
		mat1[3] = (c * f + d * h) % mod;
	}
}
0