結果

問題 No.251 大きな桁の復習問題(1)
ユーザー ぴろずぴろず
提出日時 2015-07-24 22:34:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 827 ms / 5,000 ms
コード長 334 bytes
コンパイル時間 2,382 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 57,644 KB
最終ジャッジ日時 2024-05-09 22:35:43
合計ジャッジ時間 13,426 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,952 KB
testcase_01 AC 123 ms
53,824 KB
testcase_02 AC 125 ms
54,116 KB
testcase_03 AC 125 ms
54,312 KB
testcase_04 AC 124 ms
53,872 KB
testcase_05 AC 127 ms
54,204 KB
testcase_06 AC 128 ms
54,304 KB
testcase_07 AC 126 ms
54,128 KB
testcase_08 AC 127 ms
54,160 KB
testcase_09 AC 817 ms
57,260 KB
testcase_10 AC 804 ms
57,176 KB
testcase_11 AC 827 ms
56,984 KB
testcase_12 AC 825 ms
57,020 KB
testcase_13 AC 808 ms
57,256 KB
testcase_14 AC 809 ms
57,036 KB
testcase_15 AC 793 ms
57,248 KB
testcase_16 AC 793 ms
57,000 KB
testcase_17 AC 808 ms
57,360 KB
testcase_18 AC 783 ms
57,276 KB
testcase_19 AC 793 ms
57,644 KB
testcase_20 AC 128 ms
54,260 KB
testcase_21 AC 123 ms
54,012 KB
testcase_22 AC 126 ms
54,192 KB
testcase_23 AC 113 ms
52,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no251;

import java.math.BigInteger;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		BigInteger n = new BigInteger(sc.next());
		BigInteger m = new BigInteger(sc.next());
		System.out.println(n.modPow(m, BigInteger.valueOf(129402307)));
	}

}
0