結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,116 KB
testcase_01 AC 126 ms
53,924 KB
testcase_02 AC 122 ms
53,952 KB
testcase_03 AC 123 ms
53,916 KB
testcase_04 AC 104 ms
52,912 KB
testcase_05 AC 116 ms
54,140 KB
testcase_06 AC 114 ms
53,860 KB
testcase_07 AC 117 ms
54,116 KB
testcase_08 AC 114 ms
53,872 KB
testcase_09 AC 758 ms
57,268 KB
testcase_10 AC 733 ms
57,192 KB
testcase_11 AC 785 ms
57,244 KB
testcase_12 AC 722 ms
57,136 KB
testcase_13 AC 772 ms
57,112 KB
testcase_14 AC 757 ms
56,828 KB
testcase_15 AC 739 ms
57,256 KB
testcase_16 AC 788 ms
57,268 KB
testcase_17 AC 778 ms
57,372 KB
testcase_18 AC 792 ms
57,016 KB
testcase_19 AC 763 ms
57,060 KB
testcase_20 AC 111 ms
53,000 KB
testcase_21 AC 126 ms
54,192 KB
testcase_22 AC 127 ms
54,016 KB
testcase_23 AC 129 ms
53,956 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