結果

問題 No.1084 積の積
ユーザー tyawanmusityawanmusi
提出日時 2020-06-13 16:43:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 614 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,644 KB
最終ジャッジ日時 2024-07-03 11:14:48
合計ジャッジ時間 6,469 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 410 ms
20,020 KB
testcase_05 AC 47 ms
12,672 KB
testcase_06 AC 374 ms
19,900 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 60 ms
20,900 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 36 ms
11,008 KB
testcase_12 AC 132 ms
15,104 KB
testcase_13 AC 242 ms
20,232 KB
testcase_14 AC 107 ms
14,540 KB
testcase_15 AC 104 ms
13,844 KB
testcase_16 AC 284 ms
21,644 KB
testcase_17 AC 127 ms
14,876 KB
testcase_18 AC 195 ms
17,780 KB
testcase_19 AC 252 ms
20,176 KB
testcase_20 AC 79 ms
12,928 KB
testcase_21 AC 110 ms
14,300 KB
testcase_22 AC 90 ms
13,244 KB
testcase_23 AC 162 ms
16,396 KB
testcase_24 AC 145 ms
15,648 KB
testcase_25 AC 244 ms
20,252 KB
testcase_26 AC 303 ms
19,668 KB
testcase_27 AC 302 ms
19,536 KB
testcase_28 AC 290 ms
19,412 KB
testcase_29 AC 302 ms
19,636 KB
testcase_30 AC 299 ms
19,412 KB
testcase_31 AC 308 ms
19,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Writer解
n = int(input())
a = list(map(int, input().split()))
a.append(10**9)
mod = 10**9+7

if 0 in a:
  	print(0)
  	exit()

p = [0]*n
s = 1
j = 0
for i in range(n):
	while s*a[j] < 10**9:
		s *= a[j]
		j += 1
	p[i] = j-i
	s //= a[i]

imos = [0]*(n+1)
for i in range(n):
  	imos[i] += 1
  	imos[i+p[i]] -= 1
for i in range(n):
  	imos[i+1] += imos[i]
for i in range(n):
	if i!=0:
		imos[i-1] -= p[i]
for i in range(n, 0, -1):
  	imos[i-1] += imos[i]
ans=1
for i in range(n):
  	ans *= pow(a[i], imos[i], mod)
  	ans %= mod
print(ans)
0