結果

問題 No.2394 部分和乗総和
ユーザー ks2mks2m
提出日時 2023-07-28 22:58:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 2,737 ms
コンパイル使用メモリ 75,624 KB
実行使用メモリ 55,148 KB
最終ジャッジ日時 2024-10-06 20:48:25
合計ジャッジ時間 6,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,760 KB
testcase_01 AC 54 ms
36,740 KB
testcase_02 AC 54 ms
36,504 KB
testcase_03 AC 56 ms
36,564 KB
testcase_04 AC 55 ms
36,372 KB
testcase_05 AC 55 ms
36,628 KB
testcase_06 AC 53 ms
36,764 KB
testcase_07 AC 54 ms
36,640 KB
testcase_08 AC 55 ms
36,548 KB
testcase_09 AC 54 ms
36,608 KB
testcase_10 AC 54 ms
36,708 KB
testcase_11 AC 54 ms
36,344 KB
testcase_12 AC 54 ms
36,584 KB
testcase_13 AC 145 ms
41,304 KB
testcase_14 AC 259 ms
45,108 KB
testcase_15 AC 285 ms
45,020 KB
testcase_16 AC 309 ms
48,520 KB
testcase_17 AC 446 ms
54,836 KB
testcase_18 AC 446 ms
54,800 KB
testcase_19 AC 453 ms
55,148 KB
testcase_20 AC 420 ms
54,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		long m = Long.parseLong(sa[1]);
		int b = Integer.parseInt(sa[2]);
		sa = br.readLine().split(" ");
		long[] a = new long[n];
		for (int i = 0; i < n; i++) {
			a[i] = Long.parseLong(sa[i]);
		}
		br.close();

		long ans = power(m, a[0], b) + 1;
		ans %= b;
		for (int i = 1; i < n; i++) {
			ans += ans * power(m, a[i], b) % b;
			ans %= b;
		}
		System.out.println(ans);
	}

	static long power(long x, long n, int m) {
		if (n == 0) {
			return 1;
		}
		long val = power(x, n / 2, m);
		val = val * val % m;
		if (n % 2 == 1) {
			x %= m;
			val = val * x % m;
		}
		return val;
	}
}
0