結果

問題 No.1084 積の積
ユーザー uni_pythonuni_python
提出日時 2020-06-20 10:19:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 714 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 89,564 KB
最終ジャッジ日時 2024-07-03 16:57:22
合計ジャッジ時間 4,560 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,612 KB
testcase_01 AC 38 ms
53,356 KB
testcase_02 AC 38 ms
53,624 KB
testcase_03 AC 37 ms
52,392 KB
testcase_04 AC 97 ms
79,056 KB
testcase_05 AC 55 ms
76,812 KB
testcase_06 AC 97 ms
78,748 KB
testcase_07 AC 37 ms
52,592 KB
testcase_08 AC 40 ms
54,552 KB
testcase_09 AC 61 ms
83,288 KB
testcase_10 AC 38 ms
52,656 KB
testcase_11 AC 51 ms
63,268 KB
testcase_12 AC 99 ms
80,676 KB
testcase_13 AC 151 ms
87,748 KB
testcase_14 AC 83 ms
74,888 KB
testcase_15 AC 81 ms
75,784 KB
testcase_16 AC 165 ms
89,564 KB
testcase_17 AC 90 ms
77,904 KB
testcase_18 AC 125 ms
84,608 KB
testcase_19 AC 151 ms
88,184 KB
testcase_20 AC 69 ms
69,924 KB
testcase_21 AC 83 ms
76,092 KB
testcase_22 AC 75 ms
73,380 KB
testcase_23 AC 110 ms
82,652 KB
testcase_24 AC 106 ms
81,192 KB
testcase_25 AC 151 ms
87,944 KB
testcase_26 AC 178 ms
88,776 KB
testcase_27 AC 185 ms
88,892 KB
testcase_28 AC 180 ms
88,640 KB
testcase_29 AC 185 ms
88,744 KB
testcase_30 AC 184 ms
88,876 KB
testcase_31 AC 184 ms
88,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    import bisect
    
    N=I()
    A=LI()
    ans=1
    flag=0
    if min(A)==0:
        print(0)
    else:

            
        ceil=10**9
        now=1
        temp=1
        ans=1
        l=0
        
        for r in range(N):
            now*=A[r]
            temp=(temp*pow(A[r],r-l+1,mod))%mod
            
            while now>=ceil:
                temp=(temp*pow(now,mod-2,mod))
                now=now//A[l]
                l+=1
            ans=(ans*temp)%mod
            
        print(ans%mod)
            


main()
0