結果

問題 No.1084 積の積
ユーザー NoneNone
提出日時 2021-03-17 22:44:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 1,052 bytes
コンパイル時間 771 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,832 KB
最終ジャッジ日時 2024-11-15 17:26:43
合計ジャッジ時間 5,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 230 ms
88,064 KB
testcase_05 AC 68 ms
76,032 KB
testcase_06 AC 228 ms
87,808 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 68 ms
80,512 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 63 ms
63,744 KB
testcase_12 AC 123 ms
72,704 KB
testcase_13 AC 198 ms
83,328 KB
testcase_14 AC 109 ms
70,016 KB
testcase_15 AC 105 ms
70,016 KB
testcase_16 AC 220 ms
86,016 KB
testcase_17 AC 118 ms
71,680 KB
testcase_18 AC 162 ms
78,592 KB
testcase_19 AC 201 ms
83,328 KB
testcase_20 AC 96 ms
67,200 KB
testcase_21 AC 109 ms
70,144 KB
testcase_22 AC 96 ms
68,352 KB
testcase_23 AC 142 ms
75,264 KB
testcase_24 AC 133 ms
73,984 KB
testcase_25 AC 198 ms
83,200 KB
testcase_26 AC 235 ms
88,448 KB
testcase_27 AC 234 ms
88,576 KB
testcase_28 AC 235 ms
88,832 KB
testcase_29 AC 235 ms
88,704 KB
testcase_30 AC 234 ms
88,704 KB
testcase_31 AC 232 ms
88,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def syakutori(A):

    total=1

    def merge(total,Ai):
        total*=Ai
        return total

    def inv_merge(total,Ai):
        total//=Ai
        return total

    def is_possible_merge(total,Ai):
        return total*Ai<10**9

    N=len(A)
    left, right, right_max=0,0,N
    res=1
    T=1
    S=1
    for left in range(right_max):
        while right<right_max and is_possible_merge(total,A[right]):
            total = merge(total,A[right])
            S*=A[right]
            S%=MOD
            T*=S
            T%=MOD
            right+=1
        res*=T
        res%=MOD
        if right==left:
            right+=1
        else:
            total = inv_merge(total,A[left])
            S*=pow(A[left],MOD-2,MOD)
            S%=MOD
            T*=pow(A[left],MOD-1-(right-left),MOD)
            T%=MOD


    return res


#########################################
import sys
input = sys.stdin.readline

K=10**9

MOD=10**9+7

N=int(input())
A=list(map(int, input().split()))

if 0 in A:
    print(0)
else:
    res=syakutori(A)
    print(res)
0