結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
39,708 KB
testcase_01 AC 109 ms
41,288 KB
testcase_02 AC 108 ms
40,788 KB
testcase_03 AC 110 ms
40,980 KB
testcase_04 AC 108 ms
41,148 KB
testcase_05 AC 110 ms
41,112 KB
testcase_06 AC 112 ms
41,268 KB
testcase_07 AC 96 ms
39,932 KB
testcase_08 AC 96 ms
40,152 KB
testcase_09 AC 707 ms
44,916 KB
testcase_10 AC 721 ms
44,496 KB
testcase_11 AC 720 ms
45,028 KB
testcase_12 AC 697 ms
44,608 KB
testcase_13 AC 709 ms
44,564 KB
testcase_14 AC 732 ms
44,704 KB
testcase_15 AC 747 ms
44,824 KB
testcase_16 AC 746 ms
44,940 KB
testcase_17 AC 695 ms
44,712 KB
testcase_18 AC 698 ms
44,296 KB
testcase_19 AC 753 ms
44,584 KB
testcase_20 AC 99 ms
40,008 KB
testcase_21 AC 107 ms
41,068 KB
testcase_22 AC 97 ms
40,144 KB
testcase_23 AC 107 ms
41,000 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