結果

問題 No.1084 積の積
ユーザー rlangevinrlangevin
提出日時 2023-11-07 12:15:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,756 KB
実行使用メモリ 91,136 KB
最終ジャッジ日時 2024-09-25 23:19:03
合計ジャッジ時間 5,255 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,248 KB
testcase_01 AC 39 ms
53,376 KB
testcase_02 AC 38 ms
53,504 KB
testcase_03 AC 39 ms
53,760 KB
testcase_04 AC 103 ms
83,200 KB
testcase_05 AC 50 ms
76,416 KB
testcase_06 AC 98 ms
82,560 KB
testcase_07 AC 34 ms
52,352 KB
testcase_08 AC 38 ms
53,504 KB
testcase_09 AC 56 ms
81,280 KB
testcase_10 AC 33 ms
51,584 KB
testcase_11 AC 50 ms
65,024 KB
testcase_12 AC 101 ms
81,536 KB
testcase_13 AC 154 ms
89,088 KB
testcase_14 AC 90 ms
79,488 KB
testcase_15 AC 88 ms
79,360 KB
testcase_16 AC 167 ms
91,136 KB
testcase_17 AC 98 ms
80,768 KB
testcase_18 AC 128 ms
85,760 KB
testcase_19 AC 152 ms
88,960 KB
testcase_20 AC 73 ms
74,752 KB
testcase_21 AC 90 ms
79,232 KB
testcase_22 AC 82 ms
78,336 KB
testcase_23 AC 116 ms
83,712 KB
testcase_24 AC 108 ms
82,048 KB
testcase_25 AC 154 ms
89,088 KB
testcase_26 AC 188 ms
89,672 KB
testcase_27 AC 194 ms
89,472 KB
testcase_28 AC 179 ms
89,600 KB
testcase_29 AC 182 ms
89,472 KB
testcase_30 AC 180 ms
89,600 KB
testcase_31 AC 192 ms
89,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import *
Q = deque()
val, now = 1, 1
inf = 10 ** 9
ans = 1
for i in range(N - 1, -1, -1):
    Q.appendleft(A[i])
    now *= A[i]
    val *= pow(A[i], len(Q), mod)
    val %= mod
    while now >= inf:
        a = Q.pop()
        val *= pow(now, mod-2, mod)
        now //= a
    ans *= val
    ans %= mod

print(ans)
0