結果

問題 No.251 大きな桁の復習問題(1)
ユーザー rf141rf141
提出日時 2015-07-25 00:33:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 878 ms / 5,000 ms
コード長 336 bytes
コンパイル時間 4,247 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 44,568 KB
最終ジャッジ日時 2024-05-09 22:43:43
合計ジャッジ時間 16,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
41,548 KB
testcase_01 AC 159 ms
40,936 KB
testcase_02 AC 149 ms
41,076 KB
testcase_03 AC 153 ms
41,668 KB
testcase_04 AC 153 ms
41,396 KB
testcase_05 AC 141 ms
41,352 KB
testcase_06 AC 150 ms
40,980 KB
testcase_07 AC 149 ms
41,112 KB
testcase_08 AC 149 ms
41,752 KB
testcase_09 AC 824 ms
44,156 KB
testcase_10 AC 878 ms
44,348 KB
testcase_11 AC 874 ms
44,176 KB
testcase_12 AC 859 ms
44,408 KB
testcase_13 AC 860 ms
44,436 KB
testcase_14 AC 865 ms
44,408 KB
testcase_15 AC 867 ms
44,516 KB
testcase_16 AC 850 ms
44,568 KB
testcase_17 AC 813 ms
44,160 KB
testcase_18 AC 855 ms
44,220 KB
testcase_19 AC 850 ms
44,348 KB
testcase_20 AC 134 ms
41,264 KB
testcase_21 AC 145 ms
41,160 KB
testcase_22 AC 137 ms
41,436 KB
testcase_23 AC 146 ms
41,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;;
public class big {
    public static void main(String... args) {
        Scanner scan = new Scanner(System.in);
        BigInteger n = new BigInteger(scan.next());
        BigInteger m = new BigInteger(scan.next());
        System.out.println(n.modPow(m, BigInteger.valueOf(129402307)));
    }
}
0