結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 49 ms
12,660 KB
testcase_06 AC 337 ms
34,072 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 63 ms
20,820 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 38 ms
11,264 KB
testcase_12 AC 126 ms
17,572 KB
testcase_13 AC 231 ms
24,956 KB
testcase_14 AC 102 ms
15,928 KB
testcase_15 AC 97 ms
15,496 KB
testcase_16 AC 260 ms
27,080 KB
testcase_17 AC 116 ms
16,972 KB
testcase_18 AC 178 ms
21,464 KB
testcase_19 AC 230 ms
25,364 KB
testcase_20 AC 75 ms
13,928 KB
testcase_21 AC 103 ms
16,000 KB
testcase_22 AC 86 ms
14,680 KB
testcase_23 AC 154 ms
19,432 KB
testcase_24 AC 138 ms
18,488 KB
testcase_25 AC 242 ms
25,152 KB
testcase_26 AC 290 ms
26,520 KB
testcase_27 AC 293 ms
26,348 KB
testcase_28 AC 291 ms
26,344 KB
testcase_29 AC 294 ms
26,376 KB
testcase_30 AC 297 ms
26,356 KB
testcase_31 AC 292 ms
26,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
mod = 10 ** 9 + 7
N = int(input())
A = list(map(int, input().split()))
if 0 in A:
    print(0)
    exit()

use = [0] * (N + 5)
lim = 10 ** 9

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