結果

問題 No.251 大きな桁の復習問題(1)
ユーザー uafr_csuafr_cs
提出日時 2015-09-13 18:46:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,268 bytes
コンパイル時間 2,890 ms
コンパイル使用メモリ 77,480 KB
実行使用メモリ 42,940 KB
最終ジャッジ日時 2024-07-19 06:23:25
合計ジャッジ時間 6,005 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,960 KB
testcase_01 WA -
testcase_02 AC 104 ms
40,856 KB
testcase_03 AC 102 ms
41,160 KB
testcase_04 AC 103 ms
40,872 KB
testcase_05 WA -
testcase_06 AC 100 ms
40,900 KB
testcase_07 AC 103 ms
40,064 KB
testcase_08 AC 103 ms
40,696 KB
testcase_09 AC 191 ms
42,012 KB
testcase_10 AC 194 ms
42,608 KB
testcase_11 AC 194 ms
42,896 KB
testcase_12 AC 186 ms
42,440 KB
testcase_13 AC 190 ms
42,864 KB
testcase_14 AC 190 ms
42,412 KB
testcase_15 AC 197 ms
42,244 KB
testcase_16 AC 197 ms
42,312 KB
testcase_17 AC 195 ms
42,380 KB
testcase_18 AC 205 ms
42,476 KB
testcase_19 AC 193 ms
42,940 KB
testcase_20 AC 92 ms
39,888 KB
testcase_21 AC 104 ms
40,756 KB
testcase_22 AC 96 ms
39,888 KB
testcase_23 AC 90 ms
39,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static long mod_pow(long n, long m, long MOD){
		if(m == 0){ return 1; }
		if(m == 1){ return n % MOD; }
		if(m % 2 != 0){
			return (mod_pow(n, m - 1, MOD) * n) % MOD; 
		}else{
			final long ret = mod_pow(n, m / 2, MOD);
			
			return (ret * ret) % MOD;
		}
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long MOD = 129402307;
		
		char[] N_ch = sc.next().toCharArray();
		final boolean N_is_zero = N_ch.length == 1 && N_ch[0] == '0';
		char[] M_ch = sc.next().toCharArray();
		final boolean M_is_zero = M_ch.length == 1 && N_ch[0] == '0';
		
		long N_mod = 0, M_mod = 0;
		for(final char c : N_ch){
			N_mod *= 10;
			N_mod += Character.getNumericValue(c);
			N_mod %= MOD;
		}
		for(final char c : M_ch){
			M_mod *= 10;
			M_mod += Character.getNumericValue(c);
			M_mod %= (MOD - 1);
		}
		//System.out.println(N_mod + " " + M_mod);
		
		if(N_mod == 0 && M_is_zero){ System.out.println(1); }
		else if(N_mod == 0){ System.out.println(0); }
		else if(N_mod == 1){ System.out.println(1); }
		else{ System.out.println(mod_pow(N_mod, M_mod, MOD)); }
		
	}

}
0