結果

問題 No.1084 積の積
ユーザー NoneNone
提出日時 2021-03-17 23:03:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-11-15 17:56:34
合計ジャッジ時間 4,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 149 ms
85,760 KB
testcase_05 AC 62 ms
76,416 KB
testcase_06 AC 149 ms
85,504 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 41 ms
51,712 KB
testcase_09 AC 68 ms
80,128 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 57 ms
61,952 KB
testcase_12 AC 92 ms
71,168 KB
testcase_13 AC 133 ms
81,792 KB
testcase_14 AC 82 ms
68,608 KB
testcase_15 AC 79 ms
67,840 KB
testcase_16 AC 143 ms
84,992 KB
testcase_17 AC 88 ms
70,016 KB
testcase_18 AC 114 ms
77,056 KB
testcase_19 AC 133 ms
81,920 KB
testcase_20 AC 71 ms
65,536 KB
testcase_21 AC 81 ms
68,224 KB
testcase_22 AC 74 ms
66,560 KB
testcase_23 AC 100 ms
73,600 KB
testcase_24 AC 96 ms
72,832 KB
testcase_25 AC 133 ms
81,792 KB
testcase_26 AC 151 ms
84,608 KB
testcase_27 AC 150 ms
84,736 KB
testcase_28 AC 149 ms
84,608 KB
testcase_29 AC 150 ms
84,992 KB
testcase_30 AC 147 ms
84,608 KB
testcase_31 AC 150 ms
84,608 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])
            T*=total
            T%=MOD
            right+=1
        res*=T
        res%=MOD
        if right==left:
            right+=1
        else:
            total = inv_merge(total,A[left])
            T*=pow(A[left],MOD-1-(right-left),MOD)
            T%=MOD


    return res


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

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