結果

問題 No.251 大きな桁の復習問題(1)
ユーザー rf141rf141
提出日時 2015-07-25 00:36:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 805 ms / 5,000 ms
コード長 283 bytes
コンパイル時間 3,406 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 57,640 KB
最終ジャッジ日時 2024-12-17 17:19:23
合計ジャッジ時間 13,962 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,520 KB
testcase_01 AC 120 ms
54,180 KB
testcase_02 AC 106 ms
53,160 KB
testcase_03 AC 102 ms
53,032 KB
testcase_04 AC 109 ms
52,956 KB
testcase_05 AC 114 ms
54,356 KB
testcase_06 AC 118 ms
54,204 KB
testcase_07 AC 116 ms
54,220 KB
testcase_08 AC 106 ms
54,376 KB
testcase_09 AC 784 ms
57,316 KB
testcase_10 AC 805 ms
57,328 KB
testcase_11 AC 747 ms
57,304 KB
testcase_12 AC 748 ms
57,224 KB
testcase_13 AC 777 ms
57,640 KB
testcase_14 AC 724 ms
56,928 KB
testcase_15 AC 794 ms
57,272 KB
testcase_16 AC 775 ms
57,276 KB
testcase_17 AC 793 ms
57,108 KB
testcase_18 AC 772 ms
57,284 KB
testcase_19 AC 759 ms
57,120 KB
testcase_20 AC 132 ms
53,968 KB
testcase_21 AC 126 ms
54,240 KB
testcase_22 AC 120 ms
53,984 KB
testcase_23 AC 117 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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