結果

問題 No.251 大きな桁の復習問題(1)
ユーザー tentententen
提出日時 2021-01-20 18:41:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 289 ms / 5,000 ms
コード長 833 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 77,012 KB
実行使用メモリ 44,344 KB
最終ジャッジ日時 2024-06-02 11:49:51
合計ジャッジ時間 7,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,368 KB
testcase_01 AC 114 ms
41,124 KB
testcase_02 AC 117 ms
41,608 KB
testcase_03 AC 99 ms
41,072 KB
testcase_04 AC 115 ms
41,240 KB
testcase_05 AC 111 ms
41,324 KB
testcase_06 AC 120 ms
41,108 KB
testcase_07 AC 111 ms
41,264 KB
testcase_08 AC 106 ms
40,996 KB
testcase_09 AC 223 ms
43,920 KB
testcase_10 AC 265 ms
44,100 KB
testcase_11 AC 228 ms
43,604 KB
testcase_12 AC 250 ms
43,592 KB
testcase_13 AC 264 ms
43,788 KB
testcase_14 AC 229 ms
43,884 KB
testcase_15 AC 218 ms
43,704 KB
testcase_16 AC 289 ms
44,344 KB
testcase_17 AC 222 ms
44,052 KB
testcase_18 AC 220 ms
43,728 KB
testcase_19 AC 225 ms
43,884 KB
testcase_20 AC 102 ms
41,128 KB
testcase_21 AC 102 ms
41,268 KB
testcase_22 AC 113 ms
41,028 KB
testcase_23 AC 100 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 129402307;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = 0;
		for (char c : sc.next().toCharArray()) {
		    n *= 10;
		    n += c - '0';
		    n %= MOD;
		}
		char[] arr = sc.next().toCharArray();
		int length = arr.length;
		long[] bases = new long[length];
		bases[length - 1] = n;
		long ans = pow(n, arr[length - 1] - '0');
		for (int i = length - 2; i >= 0; i--) {
		    bases[i] = pow(bases[i + 1], 10);
		    ans *= pow(bases[i], arr[i] - '0');
		    ans %= MOD;
		}
		System.out.println(ans);
	}
	
	static long pow(long x, long p) {
	    if (p == 0) {
	        return 1;
	    } else if (p % 2 == 0) {
	        return pow(x * x % MOD, p / 2);
	    } else {
	        return pow(x, p - 1) * x % MOD;
	    }
	}
}
0