結果

問題 No.1084 積の積
ユーザー wolgnikwolgnik
提出日時 2020-06-19 22:10:01
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 595 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 92,632 KB
最終ジャッジ日時 2024-07-03 14:50:50
合計ジャッジ時間 3,402 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 146 ms
83,200 KB
testcase_05 RE -
testcase_06 AC 138 ms
82,420 KB
testcase_07 RE -
testcase_08 AC 36 ms
51,840 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 47 ms
62,848 KB
testcase_12 AC 58 ms
72,704 KB
testcase_13 AC 71 ms
84,224 KB
testcase_14 AC 56 ms
69,760 KB
testcase_15 AC 54 ms
69,376 KB
testcase_16 AC 75 ms
87,808 KB
testcase_17 AC 56 ms
72,104 KB
testcase_18 AC 66 ms
78,976 KB
testcase_19 AC 73 ms
84,864 KB
testcase_20 AC 52 ms
66,944 KB
testcase_21 AC 56 ms
70,016 KB
testcase_22 AC 53 ms
67,968 KB
testcase_23 AC 62 ms
76,032 KB
testcase_24 AC 60 ms
74,240 KB
testcase_25 AC 72 ms
84,224 KB
testcase_26 AC 82 ms
86,016 KB
testcase_27 AC 80 ms
86,280 KB
testcase_28 AC 81 ms
86,272 KB
testcase_29 AC 79 ms
86,400 KB
testcase_30 AC 81 ms
86,016 KB
testcase_31 AC 80 ms
86,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
a = list(map(int, input().split()))
mod = 10 ** 9 + 7
rs = [0] * N
r = 0
x = 1
imos = [0] * (N + 1)
imosliner = [0] * (N + 1)
for l in range(N):
  while r < N:
    if x * a[r] >= 10 ** 9:
      rs[l] = r
      break
    x *= a[r]
    r += 1
  else: rs[l] = r
  x //= a[l]
  imos[l] += rs[l] - l
  imosliner[l] -= 1
  imosliner[rs[l]] += 1
#print(imos, imosliner)
for i in range(N):
  imos[i + 1] += imos[i] + imosliner[i]
  imosliner[i + 1] += imosliner[i]
res = 1
for i in range(N):
  res *= pow(a[i], imos[i], mod)
  res %= mod
print(res)
0