結果

問題 No.251 大きな桁の復習問題(1)
ユーザー htensaihtensai
提出日時 2020-01-28 17:15:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 1,139 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 76,884 KB
実行使用メモリ 41,944 KB
最終ジャッジ日時 2024-09-15 13:45:08
合計ジャッジ時間 5,887 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,640 KB
testcase_01 AC 51 ms
36,920 KB
testcase_02 AC 51 ms
36,840 KB
testcase_03 AC 52 ms
36,668 KB
testcase_04 AC 52 ms
36,560 KB
testcase_05 AC 51 ms
37,092 KB
testcase_06 AC 51 ms
36,944 KB
testcase_07 AC 51 ms
36,544 KB
testcase_08 AC 53 ms
36,896 KB
testcase_09 AC 171 ms
41,944 KB
testcase_10 AC 132 ms
40,376 KB
testcase_11 AC 125 ms
40,508 KB
testcase_12 AC 129 ms
40,372 KB
testcase_13 AC 157 ms
40,584 KB
testcase_14 AC 151 ms
40,360 KB
testcase_15 AC 138 ms
40,320 KB
testcase_16 AC 122 ms
40,716 KB
testcase_17 AC 150 ms
40,224 KB
testcase_18 AC 146 ms
40,284 KB
testcase_19 AC 144 ms
40,356 KB
testcase_20 AC 51 ms
36,532 KB
testcase_21 AC 51 ms
36,812 KB
testcase_22 AC 51 ms
36,344 KB
testcase_23 AC 52 ms
36,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    static final int MOD = 129402307;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        char[] nArr = br.readLine().toCharArray();
        char[] mArr = br.readLine().toCharArray();
        long n = 0;
        for (char c : nArr) {
            n *= 10;
            n += c - '0';
            n %= MOD;
        }
        int length = mArr.length;
        long[] values = new long[length];
        values[0] = n;
        for (int i = 1; i < length; i++) {
            values[i] = 1;
            for (int j = 0; j < 10; j++) {
                values[i] *= values[i - 1];
                values[i] %= MOD;
            }
        }
        long ans = 1;
        for (int i = 0; i < length; i++) {
            int x = mArr[length - 1 - i] - '0';
            long tmp = 1;
            for (int j = 0; j < x; j++) {
                tmp *= values[i];
                tmp %= MOD;
            }
            ans *= tmp;
            ans %= MOD;
        }
        System.out.println(ans);
  }
}
0