結果

問題 No.1084 積の積
ユーザー NoneNone
提出日時 2021-03-17 22:43:11
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,013 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 89,600 KB
最終ジャッジ日時 2024-11-15 17:24:49
合計ジャッジ時間 6,497 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 44 ms
52,224 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 233 ms
87,936 KB
testcase_05 RE -
testcase_06 AC 229 ms
88,064 KB
testcase_07 RE -
testcase_08 AC 40 ms
52,096 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 68 ms
63,744 KB
testcase_12 AC 132 ms
72,704 KB
testcase_13 AC 197 ms
83,200 KB
testcase_14 AC 107 ms
70,272 KB
testcase_15 AC 104 ms
69,888 KB
testcase_16 AC 220 ms
86,144 KB
testcase_17 AC 118 ms
72,064 KB
testcase_18 AC 163 ms
78,848 KB
testcase_19 AC 201 ms
83,456 KB
testcase_20 AC 90 ms
67,584 KB
testcase_21 AC 108 ms
70,016 KB
testcase_22 AC 97 ms
68,224 KB
testcase_23 AC 144 ms
75,392 KB
testcase_24 AC 136 ms
73,984 KB
testcase_25 AC 200 ms
83,328 KB
testcase_26 AC 233 ms
88,448 KB
testcase_27 AC 233 ms
88,576 KB
testcase_28 AC 236 ms
88,576 KB
testcase_29 AC 233 ms
88,448 KB
testcase_30 AC 234 ms
88,832 KB
testcase_31 AC 233 ms
88,832 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()))
res=syakutori(A)
print(res)
0