結果

問題 No.613 Solitude by the window
ユーザー 37zigen37zigen
提出日時 2017-12-22 01:35:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 1,265 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 78,040 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-12-16 07:54:04
合計ジャッジ時間 6,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,292 KB
testcase_01 AC 128 ms
41,240 KB
testcase_02 AC 124 ms
41,004 KB
testcase_03 AC 121 ms
41,260 KB
testcase_04 AC 122 ms
41,352 KB
testcase_05 AC 122 ms
40,880 KB
testcase_06 AC 122 ms
41,208 KB
testcase_07 AC 129 ms
41,020 KB
testcase_08 AC 136 ms
41,200 KB
testcase_09 AC 124 ms
41,164 KB
testcase_10 AC 118 ms
41,040 KB
testcase_11 AC 116 ms
40,764 KB
testcase_12 AC 120 ms
41,180 KB
testcase_13 AC 125 ms
41,020 KB
testcase_14 AC 129 ms
41,020 KB
testcase_15 AC 111 ms
40,044 KB
testcase_16 AC 109 ms
39,820 KB
testcase_17 AC 135 ms
41,380 KB
testcase_18 AC 117 ms
40,556 KB
testcase_19 AC 117 ms
41,336 KB
testcase_20 AC 114 ms
40,276 KB
testcase_21 AC 112 ms
40,180 KB
testcase_22 AC 119 ms
40,740 KB
testcase_23 AC 119 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	long N;
	long M;

	class S {
		long a, b;

		public S(long a_, long b_) {
			a = a_ % M;
			b = b_ % M;
		}

		S mul(S s) {
			return new S(a * s.a % M + 3 * b % M * s.b % M, a * s.b % M + b * s.a % M);
		}

		S add(S s) {
			return new S(a + s.a, b + s.b);
		}

		S pow(long n) {
			S ret = new S(1, 0);
			S mul = new S(a, b);
			for (; n > 0; n >>= 1, mul = mul.mul(mul)) {
				if (n % 2 == 1) {
					ret = ret.mul(mul);
				}
			}
			return ret;
		}
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		N = sc.nextLong();
		M = sc.nextLong();
		S s1 = new S(2, 1);
		S s2 = new S(2, -1);
		S ret;
		if (f(3) == 1) {
			ret = s1.pow(pow(2, N, M - 1)).add(s2.pow(pow(2, N, M - 1)));
		} else {
			ret = s1.pow(pow(2, N, M + 1)).add(s2.pow(pow(2, N, M + 1)));
		}
		System.out.println((ret.a - 2 + M) % M);

	}

	long f(long a) {
		return pow(a, (M - 1) / 2, M);
	}

	long pow(long a, long n, long mod) {
		long ret = 1;
		for (; n > 0; n >>= 1, a = a * a % mod) {
			if (n % 2 == 1) {
				ret = ret * a % mod;
			}
		}
		return ret;
	}

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

	public static void main(String[] args) {
		new Main().run();
	}

}
0