結果

問題 No.1084 積の積
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-01 11:27:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 1,446 bytes
コンパイル時間 713 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,580 KB
最終ジャッジ日時 2024-11-19 01:14:49
合計ジャッジ時間 10,720 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 169 ms
12,496 KB
testcase_05 AC 50 ms
12,624 KB
testcase_06 AC 150 ms
12,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 322 ms
20,824 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 48 ms
11,136 KB
testcase_12 AC 249 ms
15,164 KB
testcase_13 AC 485 ms
20,156 KB
testcase_14 AC 196 ms
14,212 KB
testcase_15 AC 182 ms
13,860 KB
testcase_16 AC 549 ms
21,580 KB
testcase_17 AC 228 ms
14,772 KB
testcase_18 AC 371 ms
17,836 KB
testcase_19 AC 493 ms
20,244 KB
testcase_20 AC 133 ms
12,872 KB
testcase_21 AC 198 ms
14,136 KB
testcase_22 AC 157 ms
13,428 KB
testcase_23 AC 306 ms
16,532 KB
testcase_24 AC 274 ms
15,844 KB
testcase_25 AC 490 ms
20,332 KB
testcase_26 AC 580 ms
19,628 KB
testcase_27 AC 577 ms
19,608 KB
testcase_28 AC 578 ms
19,568 KB
testcase_29 AC 582 ms
19,628 KB
testcase_30 AC 580 ms
19,484 KB
testcase_31 AC 583 ms
19,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
mod=10**9+7
th=10**9
class MyQue:
    """
    value:10**9未満判定、pop時のvalue_pyrの計算に使用
    value_pyr:積の積の計算に使用。
    """
    def __init__(self):
        self.q=deque()
        self.value=1
        self.value_pyr=1
        self.length=0
    def push(self,x):
        self.value*=x
        self.q.append(x)
        #assert self.value<th
        self.length+=1
        self.value_pyr*=pow(x,self.length,mod)
        if self.value_pyr>=mod:self.value_pyr%=mod    
    def pop(self):
        #assert self.length>0,(self.value,q,self.length)
        self.value_pyr*=pow(self.value,mod-2,mod)
        if self.value_pyr>=mod:self.value_pyr%=mod
        x=self.q.popleft()
        self.value//=x
        #assert self.value<th
        self.length-=1
def main0(n,a):
    q=MyQue()
    ans=1
    for i in range(n):
        if a[i]==0:return 0
        while q.value*a[i]>=th:
            q.pop()
        q.push(a[i])
        ans*=q.value_pyr
        if ans>=mod:ans%=mod
    return ans

def main1(n,a):
    ans=1
    for i in range(n):
        for j in range(i,n):
            x=1
            for k in range(i,j+1):
                x*=a[k]
            if x<th:
                ans*=x
                ans%=mod
    return ans
    
if __name__=='__main__':
    n=int(input())
    a=list(map(int,input().split()))
    ans0=main0(n,a)
    print(ans0)
    
    #ans1=main1(n,a)
    #print(ans1)
0