結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 348 ms
34,080 KB
testcase_05 AC 289 ms
34,076 KB
testcase_06 AC 315 ms
34,080 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 355 ms
29,836 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 36 ms
11,264 KB
testcase_12 AC 116 ms
17,384 KB
testcase_13 AC 222 ms
24,968 KB
testcase_14 AC 96 ms
15,936 KB
testcase_15 AC 89 ms
15,504 KB
testcase_16 AC 251 ms
27,144 KB
testcase_17 AC 107 ms
17,108 KB
testcase_18 AC 163 ms
21,316 KB
testcase_19 AC 222 ms
25,148 KB
testcase_20 AC 69 ms
13,940 KB
testcase_21 AC 93 ms
16,124 KB
testcase_22 AC 80 ms
14,652 KB
testcase_23 AC 141 ms
19,436 KB
testcase_24 AC 130 ms
18,516 KB
testcase_25 AC 225 ms
25,280 KB
testcase_26 AC 282 ms
26,372 KB
testcase_27 AC 278 ms
26,356 KB
testcase_28 AC 269 ms
26,360 KB
testcase_29 AC 282 ms
26,352 KB
testcase_30 AC 276 ms
26,396 KB
testcase_31 AC 276 ms
26,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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