結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー kitamoto0407kitamoto0407
提出日時 2022-07-28 18:08:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 37,352 KB
最終ジャッジ日時 2024-07-18 08:46:19
合計ジャッジ時間 6,356 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,216 KB
testcase_01 AC 48 ms
36,900 KB
testcase_02 AC 52 ms
37,260 KB
testcase_03 AC 48 ms
37,312 KB
testcase_04 AC 48 ms
37,008 KB
testcase_05 AC 51 ms
37,016 KB
testcase_06 AC 51 ms
37,264 KB
testcase_07 AC 49 ms
37,268 KB
testcase_08 AC 48 ms
37,016 KB
testcase_09 AC 47 ms
37,140 KB
testcase_10 AC 46 ms
37,080 KB
testcase_11 AC 48 ms
37,080 KB
testcase_12 AC 48 ms
37,152 KB
testcase_13 AC 50 ms
37,280 KB
testcase_14 AC 49 ms
37,016 KB
testcase_15 AC 47 ms
37,040 KB
testcase_16 AC 48 ms
37,108 KB
testcase_17 AC 47 ms
37,076 KB
testcase_18 AC 47 ms
37,352 KB
testcase_19 AC 48 ms
37,124 KB
testcase_20 AC 47 ms
37,164 KB
testcase_21 AC 47 ms
36,852 KB
testcase_22 AC 47 ms
37,280 KB
testcase_23 AC 47 ms
37,264 KB
testcase_24 AC 49 ms
37,272 KB
testcase_25 AC 48 ms
37,352 KB
testcase_26 AC 49 ms
36,816 KB
testcase_27 AC 48 ms
37,140 KB
testcase_28 AC 52 ms
37,280 KB
testcase_29 AC 48 ms
37,312 KB
testcase_30 AC 50 ms
37,092 KB
testcase_31 AC 47 ms
37,236 KB
testcase_32 AC 47 ms
37,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.math.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        
        String[] input = br.readLine().split(" ");
        
        BigInteger a = new BigInteger(input[0]);
        BigInteger n = new BigInteger(input[1]);
        
        BigInteger M = new BigInteger("10000000000");
        
        System.out.println(M);
        System.out.println(a.modPow(n, M));
    }
}
0