結果

問題 No.1084 積の積
ユーザー ayaoniayaoni
提出日時 2020-11-26 14:56:26
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 822 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 101,720 KB
最終ジャッジ日時 2024-07-23 20:49:50
合計ジャッジ時間 4,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,656 KB
testcase_01 AC 36 ms
53,436 KB
testcase_02 AC 39 ms
53,624 KB
testcase_03 AC 37 ms
53,508 KB
testcase_04 AC 159 ms
101,148 KB
testcase_05 RE -
testcase_06 AC 155 ms
99,896 KB
testcase_07 RE -
testcase_08 AC 37 ms
52,544 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 47 ms
63,072 KB
testcase_12 AC 60 ms
79,688 KB
testcase_13 AC 80 ms
98,532 KB
testcase_14 AC 55 ms
74,368 KB
testcase_15 AC 57 ms
74,108 KB
testcase_16 AC 87 ms
101,720 KB
testcase_17 AC 59 ms
78,508 KB
testcase_18 AC 71 ms
89,960 KB
testcase_19 AC 81 ms
99,112 KB
testcase_20 AC 52 ms
71,292 KB
testcase_21 AC 57 ms
74,764 KB
testcase_22 AC 54 ms
72,776 KB
testcase_23 AC 66 ms
84,536 KB
testcase_24 AC 63 ms
82,504 KB
testcase_25 AC 80 ms
98,664 KB
testcase_26 AC 85 ms
99,492 KB
testcase_27 AC 86 ms
99,132 KB
testcase_28 AC 85 ms
99,864 KB
testcase_29 AC 86 ms
99,700 KB
testcase_30 AC 85 ms
100,396 KB
testcase_31 AC 87 ms
99,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import accumulate
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


N = I()
A = LI()
mod = 10**9+7

count = [0]*(N+2)
a = A[0]  # 区間[l,r)の積
l,r = 0,1
while r <= N:
    if a < 10**9:
        if r <= N-1:
            a *= A[r]
            r += 1
        else:
            count[l] += r-l
            count[l+1] -= r-l+1
            count[r+1] += 1
            if l < r:
                a //= A[l]
                l += 1
            else:
                break
    else:
        count[l] += r-l-1
        count[l+1] -= r-l
        count[r] += 1
        a //= A[l]
        l += 1

count = list(accumulate(list(accumulate(count))))
ans = 1
for i in range(N):
    ans *= pow(A[i],count[i],mod)
    ans %= mod

print(ans)
0