結果

問題 No.251 大きな桁の復習問題(1)
ユーザー GrenacheGrenache
提出日時 2015-07-25 12:11:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 2,109 bytes
コンパイル時間 3,952 ms
コンパイル使用メモリ 78,156 KB
実行使用メモリ 40,436 KB
最終ジャッジ日時 2024-05-09 22:48:05
合計ジャッジ時間 6,926 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,816 KB
testcase_01 AC 55 ms
36,688 KB
testcase_02 AC 58 ms
37,084 KB
testcase_03 AC 57 ms
37,248 KB
testcase_04 AC 55 ms
36,708 KB
testcase_05 AC 54 ms
37,092 KB
testcase_06 AC 56 ms
36,732 KB
testcase_07 AC 54 ms
37,108 KB
testcase_08 AC 54 ms
36,992 KB
testcase_09 AC 103 ms
39,524 KB
testcase_10 AC 107 ms
39,244 KB
testcase_11 AC 111 ms
39,680 KB
testcase_12 AC 110 ms
40,004 KB
testcase_13 AC 115 ms
40,436 KB
testcase_14 AC 110 ms
39,616 KB
testcase_15 AC 110 ms
39,568 KB
testcase_16 AC 110 ms
39,572 KB
testcase_17 AC 114 ms
40,352 KB
testcase_18 AC 109 ms
39,288 KB
testcase_19 AC 102 ms
39,520 KB
testcase_20 AC 55 ms
37,060 KB
testcase_21 AC 57 ms
37,048 KB
testcase_22 AC 55 ms
37,004 KB
testcase_23 AC 57 ms
37,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.Iterator;


public class Main_yukicoder251_1 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        final int MOD = 129402307;

        String n = sc.next();
        String m = sc.next();
        
        int nn = mod(n, MOD);

        if (nn == 0) {
        	if (m.equals("0")) {
        		System.out.println("1");
        	} else {
        		System.out.println("0");
        	}
        } else {
        	int loop = mod(m, MOD - 1);
        	long x = nn;
        	long ret = 1;

        	while (loop > 0) {
        		if (loop % 2 == 1) {
        			ret = ret * x % MOD;
        		}
        		x = x * x % MOD;
        		loop /= 2;
        	}

        	System.out.println(ret);
        }

        sc.close();
    }
    
    private static int mod(String x, int MOD) {
    	char[] xx = x.toCharArray();
    	long ret = 0;
    	for (int i = 0; i < xx.length; i++) {
    		ret *= 10;
    		ret += xx[i] - '0';
    		ret %= MOD;
    	}

    	return (int)ret;
    }

	@SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;
		Iterator<String> it;
		
		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}
		
		String next() throws RuntimeException  {
			try {
				if (it == null || !it.hasNext()) {
					it = Arrays.asList(br.readLine().split(" ")).iterator();
				}
				return it.next();
			} catch (IOException e) {
				throw new IllegalStateException();
			}
		}
		
		int nextInt() throws RuntimeException {
			return Integer.parseInt(next());
		}

		long nextLong() throws RuntimeException {
			return Long.parseLong(next());
		}

		float nextFloat() throws RuntimeException {
			return Float.parseFloat(next());
		}

		double nextDouble() throws RuntimeException {
			return Double.parseDouble(next());
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new IllegalStateException();
			}
		}
	}
}
0