結果

問題 No.1800 Random XOR
ユーザー ks2mks2m
提出日時 2022-01-07 21:31:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 2,356 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-11-14 08:27:07
合計ジャッジ時間 4,620 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,196 KB
testcase_01 AC 123 ms
53,968 KB
testcase_02 AC 126 ms
54,020 KB
testcase_03 AC 113 ms
52,796 KB
testcase_04 AC 125 ms
54,404 KB
testcase_05 AC 116 ms
52,736 KB
testcase_06 AC 125 ms
54,036 KB
testcase_07 AC 129 ms
53,996 KB
testcase_08 AC 127 ms
54,236 KB
testcase_09 AC 114 ms
53,004 KB
testcase_10 AC 125 ms
53,816 KB
testcase_11 AC 128 ms
53,876 KB
testcase_12 AC 127 ms
54,184 KB
testcase_13 AC 129 ms
53,992 KB
testcase_14 AC 128 ms
53,892 KB
testcase_15 AC 125 ms
54,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long m = sc.nextLong();
		sc.close();

		int mod = 1000000007;
		m %= mod - 1;
		long a = power(2, m, mod) - 1;
		if (a < 0) {
			a += mod;
		}
		a *= 500000004;
		a %= mod;
		System.out.println(a);
	}

	static long power(long x, long n, int m) {
		if (n == 0) {
			return 1;
		}
		long val = power(x, n / 2, m);
		val = val * val % m;
		if (n % 2 == 1) {
			x %= m;
			val = val * x % m;
		}
		return val;
	}
}
0