結果

問題 No.1084 積の積
ユーザー tanon710tanon710
提出日時 2020-06-19 22:31:07
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 674 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 92,872 KB
最終ジャッジ日時 2024-07-03 15:05:32
合計ジャッジ時間 3,380 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,664 KB
testcase_01 AC 35 ms
53,024 KB
testcase_02 AC 35 ms
53,624 KB
testcase_03 AC 35 ms
53,340 KB
testcase_04 AC 144 ms
85,956 KB
testcase_05 RE -
testcase_06 AC 142 ms
84,956 KB
testcase_07 RE -
testcase_08 AC 35 ms
53,368 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 49 ms
65,828 KB
testcase_12 AC 62 ms
75,804 KB
testcase_13 AC 76 ms
88,720 KB
testcase_14 AC 60 ms
73,536 KB
testcase_15 AC 58 ms
72,988 KB
testcase_16 AC 83 ms
91,312 KB
testcase_17 AC 61 ms
74,380 KB
testcase_18 AC 69 ms
82,516 KB
testcase_19 AC 77 ms
87,636 KB
testcase_20 AC 55 ms
69,740 KB
testcase_21 AC 59 ms
72,688 KB
testcase_22 AC 58 ms
71,260 KB
testcase_23 AC 68 ms
80,196 KB
testcase_24 AC 65 ms
77,772 KB
testcase_25 AC 76 ms
88,812 KB
testcase_26 AC 87 ms
89,388 KB
testcase_27 AC 87 ms
89,464 KB
testcase_28 AC 90 ms
89,932 KB
testcase_29 AC 90 ms
89,164 KB
testcase_30 AC 90 ms
89,004 KB
testcase_31 AC 88 ms
88,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
n=int(input())
arr=list(map(int,input().split()))
rs=[-1]*n
tmp=1
pos=0
for i in range(n):
    for j in range(max(i,pos),n):
        tmp*=arr[j]
        if tmp>=10**9:
            rs[i]=j
            pos=j
            tmp//=arr[j]
            break
    else:
        rs[i]=n
        pos=n
    tmp//=arr[i]
imos1=[0]*(n+1)
imos2=[0]*(n+1)
for i in range(n):
    imos1[i]=rs[i]-i
    imos2[i+1]+=-1
    if rs[i]+1<=n:
        imos2[rs[i]+1]+=1
for i in range(1,n+1):
    imos2[i]+=imos2[i-1]
for i in range(n):
    imos1[i]+=imos2[i]
for i in range(1,n+1):
    imos1[i]+=imos1[i-1]
ans=1
for i in range(n):
    ans*=pow(arr[i],imos1[i],mod)
    ans%=mod
print(ans)
0