結果

問題 No.1084 積の積
ユーザー tktk_snsntktk_snsn
提出日時 2020-06-19 22:06:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,080 KB
最終ジャッジ日時 2024-07-03 14:49:02
合計ジャッジ時間 6,193 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 269 ms
34,080 KB
testcase_06 AC 298 ms
34,076 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 341 ms
29,828 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 34 ms
11,264 KB
testcase_12 AC 116 ms
17,512 KB
testcase_13 AC 201 ms
24,964 KB
testcase_14 AC 92 ms
15,940 KB
testcase_15 AC 89 ms
15,504 KB
testcase_16 AC 245 ms
27,088 KB
testcase_17 AC 109 ms
17,128 KB
testcase_18 AC 157 ms
21,228 KB
testcase_19 AC 226 ms
25,024 KB
testcase_20 AC 70 ms
13,940 KB
testcase_21 AC 91 ms
15,996 KB
testcase_22 AC 77 ms
14,780 KB
testcase_23 AC 135 ms
19,436 KB
testcase_24 AC 136 ms
18,528 KB
testcase_25 AC 213 ms
25,280 KB
testcase_26 AC 270 ms
26,532 KB
testcase_27 AC 273 ms
26,264 KB
testcase_28 AC 268 ms
26,384 KB
testcase_29 AC 279 ms
26,388 KB
testcase_30 AC 271 ms
26,396 KB
testcase_31 AC 274 ms
26,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
mod = 10 ** 9 + 7
N = int(input())
A = list(map(int, input().split()))
lim = 10 ** 9

use = [0] * (N + 5)

l = 0
memo = 1
tmp = []
for r, a in enumerate(A):
    memo *= a
    while l < r and memo > lim:
        memo //= A[l]
        l += 1
    use[l] += 1
    use[r + 1] -= 1
    tmp.append((r + 1, r - l + 1))

use = list(accumulate(use))
for x, y in tmp:
    use[x] -= y
use = list(accumulate(use))[:N]

ans = 1
for a, c in zip(A, use):
    ans *= pow(a, c, mod)
    ans %= mod
print(ans)
0