結果

問題 No.1084 積の積
ユーザー tanon710tanon710
提出日時 2020-06-19 22:36:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 91,004 KB
最終ジャッジ日時 2024-07-03 15:09:17
合計ジャッジ時間 3,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,320 KB
testcase_01 AC 38 ms
52,476 KB
testcase_02 AC 38 ms
52,156 KB
testcase_03 AC 38 ms
52,816 KB
testcase_04 AC 154 ms
85,068 KB
testcase_05 AC 56 ms
77,868 KB
testcase_06 AC 151 ms
85,676 KB
testcase_07 AC 38 ms
53,592 KB
testcase_08 AC 39 ms
53,544 KB
testcase_09 AC 62 ms
82,008 KB
testcase_10 AC 38 ms
53,568 KB
testcase_11 AC 56 ms
65,984 KB
testcase_12 AC 68 ms
76,484 KB
testcase_13 AC 84 ms
88,724 KB
testcase_14 AC 65 ms
73,076 KB
testcase_15 AC 63 ms
71,772 KB
testcase_16 AC 87 ms
91,004 KB
testcase_17 AC 66 ms
74,860 KB
testcase_18 AC 76 ms
82,476 KB
testcase_19 AC 83 ms
87,712 KB
testcase_20 AC 60 ms
70,660 KB
testcase_21 AC 65 ms
72,432 KB
testcase_22 AC 62 ms
71,140 KB
testcase_23 AC 72 ms
78,536 KB
testcase_24 AC 71 ms
77,336 KB
testcase_25 AC 85 ms
87,620 KB
testcase_26 AC 94 ms
88,872 KB
testcase_27 AC 94 ms
89,056 KB
testcase_28 AC 92 ms
89,416 KB
testcase_29 AC 93 ms
89,064 KB
testcase_30 AC 92 ms
90,216 KB
testcase_31 AC 94 ms
89,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
n=int(input())
arr=list(map(int,input().split()))
if 0 in arr:
    print(0)
    exit()
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