結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,404 KB
testcase_01 AC 117 ms
52,704 KB
testcase_02 AC 135 ms
54,148 KB
testcase_03 AC 137 ms
54,216 KB
testcase_04 AC 133 ms
53,980 KB
testcase_05 AC 132 ms
54,064 KB
testcase_06 AC 130 ms
54,176 KB
testcase_07 AC 131 ms
54,356 KB
testcase_08 AC 130 ms
54,068 KB
testcase_09 AC 835 ms
56,980 KB
testcase_10 AC 850 ms
57,368 KB
testcase_11 AC 846 ms
57,192 KB
testcase_12 AC 823 ms
56,924 KB
testcase_13 AC 828 ms
57,008 KB
testcase_14 AC 828 ms
57,580 KB
testcase_15 AC 840 ms
57,832 KB
testcase_16 AC 816 ms
57,064 KB
testcase_17 AC 828 ms
57,252 KB
testcase_18 AC 837 ms
57,848 KB
testcase_19 AC 844 ms
57,252 KB
testcase_20 AC 135 ms
53,948 KB
testcase_21 AC 131 ms
54,280 KB
testcase_22 AC 131 ms
53,980 KB
testcase_23 AC 132 ms
54,380 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