結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,376 KB
testcase_01 AC 145 ms
41,296 KB
testcase_02 AC 144 ms
41,120 KB
testcase_03 AC 146 ms
41,096 KB
testcase_04 AC 144 ms
41,448 KB
testcase_05 AC 142 ms
41,356 KB
testcase_06 AC 148 ms
41,036 KB
testcase_07 AC 148 ms
40,804 KB
testcase_08 AC 148 ms
41,376 KB
testcase_09 AC 837 ms
44,292 KB
testcase_10 AC 881 ms
44,432 KB
testcase_11 AC 874 ms
44,112 KB
testcase_12 AC 860 ms
44,448 KB
testcase_13 AC 867 ms
44,572 KB
testcase_14 AC 846 ms
44,252 KB
testcase_15 AC 864 ms
44,568 KB
testcase_16 AC 848 ms
44,536 KB
testcase_17 AC 858 ms
44,372 KB
testcase_18 AC 861 ms
44,176 KB
testcase_19 AC 861 ms
44,504 KB
testcase_20 AC 151 ms
41,532 KB
testcase_21 AC 149 ms
41,280 KB
testcase_22 AC 147 ms
41,332 KB
testcase_23 AC 147 ms
41,288 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