結果

問題 No.251 大きな桁の復習問題(1)
ユーザー tentententen
提出日時 2020-10-08 07:20:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 745 bytes
コンパイル時間 2,419 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 42,532 KB
最終ジャッジ日時 2024-07-20 05:42:31
合計ジャッジ時間 7,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,792 KB
testcase_01 WA -
testcase_02 AC 129 ms
40,836 KB
testcase_03 AC 127 ms
40,968 KB
testcase_04 AC 107 ms
40,044 KB
testcase_05 AC 119 ms
40,936 KB
testcase_06 AC 124 ms
40,780 KB
testcase_07 AC 118 ms
41,072 KB
testcase_08 AC 120 ms
40,992 KB
testcase_09 AC 200 ms
42,408 KB
testcase_10 AC 190 ms
42,200 KB
testcase_11 AC 223 ms
42,412 KB
testcase_12 AC 213 ms
42,444 KB
testcase_13 AC 192 ms
42,532 KB
testcase_14 AC 224 ms
42,292 KB
testcase_15 AC 205 ms
42,088 KB
testcase_16 AC 184 ms
42,272 KB
testcase_17 AC 198 ms
42,496 KB
testcase_18 AC 202 ms
42,424 KB
testcase_19 AC 226 ms
42,504 KB
testcase_20 AC 117 ms
41,216 KB
testcase_21 AC 111 ms
40,640 KB
testcase_22 AC 131 ms
40,916 KB
testcase_23 AC 116 ms
40,868 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);
		char[] narr = sc.next().toCharArray();
		long n = 0;
		for (char c : narr) {
		    n *= 10;
		    n += c - '0';
		    n %= MOD;
		}
		if (n == 0) {
		    System.out.println(0);
		    return;
		}
		char[] marr = sc.next().toCharArray();
		long m = 0;
		for (char c : marr) {
		    m *= 10;
		    m += c - '0';
		    m %= MOD - 1;
		}
		System.out.println(pow(n, m));
	}
	
	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