結果

問題 No.1084 積の積
ユーザー vwxyzvwxyz
提出日時 2024-06-22 02:31:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 87,652 KB
最終ジャッジ日時 2024-06-22 02:32:02
合計ジャッジ時間 3,754 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,528 KB
testcase_01 AC 32 ms
52,736 KB
testcase_02 AC 32 ms
53,300 KB
testcase_03 AC 33 ms
52,676 KB
testcase_04 AC 131 ms
81,860 KB
testcase_05 AC 49 ms
77,684 KB
testcase_06 AC 130 ms
81,528 KB
testcase_07 AC 34 ms
53,572 KB
testcase_08 AC 34 ms
52,188 KB
testcase_09 AC 54 ms
81,456 KB
testcase_10 AC 33 ms
52,824 KB
testcase_11 AC 42 ms
64,096 KB
testcase_12 AC 56 ms
73,232 KB
testcase_13 AC 67 ms
84,592 KB
testcase_14 AC 49 ms
70,360 KB
testcase_15 AC 50 ms
70,584 KB
testcase_16 AC 68 ms
87,048 KB
testcase_17 AC 50 ms
72,552 KB
testcase_18 AC 59 ms
79,624 KB
testcase_19 AC 66 ms
83,968 KB
testcase_20 AC 53 ms
67,104 KB
testcase_21 AC 51 ms
70,072 KB
testcase_22 AC 49 ms
67,812 KB
testcase_23 AC 57 ms
76,260 KB
testcase_24 AC 55 ms
75,644 KB
testcase_25 AC 65 ms
84,660 KB
testcase_26 AC 74 ms
87,652 KB
testcase_27 AC 74 ms
86,920 KB
testcase_28 AC 78 ms
86,180 KB
testcase_29 AC 77 ms
86,180 KB
testcase_30 AC 75 ms
86,868 KB
testcase_31 AC 76 ms
86,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
if 0 in A:
    ans=0
else:
    l=0
    p=1
    imos=[0]*(N+2)
    for r in range(1,N+1):
        p*=A[r-1]
        while p>=10**9:
            p//=A[l]
            l+=1
        imos[l]+=1
        imos[r]-=1
        imos[r]+=-(r-l)
        imos[r+1]-=-(r-l)
    for i in range(1,N+2):
        imos[i]+=imos[i-1]
    for i in range(1,N+2):
        imos[i]+=imos[i-1]
    mod=10**9+7
    ans=1
    for i in range(N):
        ans*=pow(A[i],imos[i],mod)
        ans%=mod
print(ans)
0