結果

問題 No.1084 積の積
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-01 11:18:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 975 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,544 KB
最終ジャッジ日時 2024-11-19 01:03:47
合計ジャッジ時間 11,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 211 ms
12,492 KB
testcase_05 WA -
testcase_06 AC 189 ms
12,620 KB
testcase_07 WA -
testcase_08 AC 32 ms
10,624 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 50 ms
11,008 KB
testcase_12 AC 269 ms
15,184 KB
testcase_13 AC 534 ms
20,256 KB
testcase_14 AC 213 ms
13,916 KB
testcase_15 AC 199 ms
13,740 KB
testcase_16 AC 603 ms
21,544 KB
testcase_17 AC 252 ms
14,752 KB
testcase_18 AC 406 ms
17,772 KB
testcase_19 AC 535 ms
20,344 KB
testcase_20 AC 145 ms
12,672 KB
testcase_21 AC 217 ms
14,188 KB
testcase_22 AC 168 ms
13,164 KB
testcase_23 AC 339 ms
16,500 KB
testcase_24 AC 302 ms
15,868 KB
testcase_25 AC 538 ms
20,296 KB
testcase_26 AC 635 ms
19,556 KB
testcase_27 AC 631 ms
19,552 KB
testcase_28 AC 633 ms
19,428 KB
testcase_29 AC 635 ms
19,556 KB
testcase_30 AC 636 ms
19,428 KB
testcase_31 AC 641 ms
19,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
mod=10**9+7
th=10**9
class MyQue:
  """
  value:10**9未満判定、pop時のvalue_pyrの計算に使用
  value_pyr:積の積の計算に使用。
  """
  def __init__(self):
    self.q=deque()
    self.value=1
    self.value_pyr=1
    self.length=0
  def push(self,x):
    self.value*=x
    self.q.append(x)
    #assert self.value<th
    self.length+=1
    self.value_pyr*=pow(x,self.length,mod)
    if self.value_pyr>=mod:self.value_pyr%=mod    
  def pop(self):
    #assert self.length>0,(self.value,q,self.length)
    self.value_pyr*=pow(self.value,mod-2,mod)
    if self.value_pyr>=mod:self.value_pyr%=mod
    x=self.q.popleft()
    self.value//=x
    #assert self.value<th
    self.length-=1
    
n=int(input())
a=list(map(int,input().split()))

q=MyQue()
ans=1
for i in range(n):
  if a[i]==0:
    del q
    q=MyQue()
    continue
  while q.value*a[i]>=th:
    q.pop()
  q.push(a[i])
  ans*=q.value_pyr
  if ans>=mod:ans%=mod
print(ans)
0