結果

問題 No.16 累乗の加算
ユーザー shinshin
提出日時 2022-05-17 20:39:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 1,210 bytes
コンパイル時間 3,975 ms
コンパイル使用メモリ 79,108 KB
実行使用メモリ 37,952 KB
最終ジャッジ日時 2024-09-15 15:57:25
合計ジャッジ時間 5,621 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,024 KB
testcase_01 AC 51 ms
36,972 KB
testcase_02 AC 79 ms
37,952 KB
testcase_03 AC 54 ms
37,168 KB
testcase_04 AC 52 ms
36,784 KB
testcase_05 AC 53 ms
37,044 KB
testcase_06 AC 58 ms
37,320 KB
testcase_07 AC 56 ms
37,044 KB
testcase_08 AC 62 ms
37,176 KB
testcase_09 AC 64 ms
37,648 KB
testcase_10 AC 57 ms
37,040 KB
testcase_11 AC 53 ms
37,064 KB
testcase_12 AC 61 ms
36,800 KB
testcase_13 AC 53 ms
36,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

public class No16 {
	
	static long K = 1000003;

	public static void main(String[] args) throws IOException{
		//累乗の加算
		String[] text = readStr();
		Long x = Long.parseLong(text[0].split(" ")[0]) , a;
		int N = Integer.parseInt(text[0].split(" ")[1]);
		long sum = 0;
		
		for(int i = 0;i < N;i++) {
			a = Long.parseLong(text[1].split(" ")[i]);
			sum += div(x , a);
			sum %= K;
		}
		
		System.out.println(sum);
		
	}
		
	
	public static long div(long x , long a) {
		long ans , c = 1;
		
		if(x <= 1) {
			ans = x;
		}else {
			while((long)Math.pow(x, c) < K) c++;
			if(c > a) {
				ans = (long)Math.pow(x, a);
			}else {
				ans = (div((long)Math.pow(x, c) % K , a / c) * (long)Math.pow(x, a % c)) % K;
			}
		}
		
		return ans;
	}
	
	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}

}
0