結果

問題 No.1084 積の積
ユーザー ks2mks2m
提出日時 2020-06-19 22:43:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 670 ms / 2,000 ms
コード長 1,192 bytes
コンパイル時間 2,038 ms
コンパイル使用メモリ 77,544 KB
実行使用メモリ 53,300 KB
最終ジャッジ日時 2024-07-03 15:16:27
合計ジャッジ時間 16,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,668 KB
testcase_01 AC 123 ms
41,532 KB
testcase_02 AC 101 ms
39,976 KB
testcase_03 AC 112 ms
41,100 KB
testcase_04 AC 670 ms
53,140 KB
testcase_05 AC 121 ms
41,940 KB
testcase_06 AC 665 ms
53,300 KB
testcase_07 AC 118 ms
41,260 KB
testcase_08 AC 104 ms
39,896 KB
testcase_09 AC 468 ms
48,780 KB
testcase_10 AC 120 ms
41,176 KB
testcase_11 AC 205 ms
44,728 KB
testcase_12 AC 486 ms
48,196 KB
testcase_13 AC 594 ms
49,704 KB
testcase_14 AC 444 ms
48,192 KB
testcase_15 AC 387 ms
48,360 KB
testcase_16 AC 620 ms
49,860 KB
testcase_17 AC 459 ms
48,216 KB
testcase_18 AC 607 ms
48,628 KB
testcase_19 AC 610 ms
48,800 KB
testcase_20 AC 357 ms
47,952 KB
testcase_21 AC 420 ms
48,672 KB
testcase_22 AC 363 ms
48,560 KB
testcase_23 AC 462 ms
48,660 KB
testcase_24 AC 498 ms
48,396 KB
testcase_25 AC 642 ms
49,752 KB
testcase_26 AC 576 ms
48,980 KB
testcase_27 AC 544 ms
49,092 KB
testcase_28 AC 579 ms
48,924 KB
testcase_29 AC 578 ms
48,936 KB
testcase_30 AC 537 ms
48,668 KB
testcase_31 AC 567 ms
48,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] a = new long[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
			if (a[i] == 0) {
				System.out.println(0);
				return;
			}
		}
		sc.close();

		long[] cnt = new long[n];
		long[] cnt2 = new long[n + 2];
		long val = 1;
		int r = 0;
		for (int l = 0; l < n; l++) {
			while (r < n && val < 1000000000) {
				val *= a[r];
				r++;
			}
			if (val >= 1000000000) {
				r--;
			}
			cnt[l] = r - l;
			cnt2[l + 1]++;
			cnt2[r + 1]--;
			if (r < n) {
				val /= a[r];
			}
			val /= a[l];
		}

		for (int i = 1; i < cnt2.length; i++) {
			cnt2[i] += cnt2[i - 1];
		}
		for (int i = 1; i < cnt.length; i++) {
			cnt[i] += cnt[i - 1] - cnt2[i];
		}

		long ans = 1;
		int mod = 1000000007;
		for (int i = 0; i < n; i++) {
			ans *= power(a[i], cnt[i], mod);
			ans %= mod;
		}
		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) {
			val = val * x % m;
		}
		return val;
	}
}
0