結果

問題 No.1084 積の積
ユーザー wolgnikwolgnik
提出日時 2020-06-19 22:11:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 87,808 KB
最終ジャッジ日時 2024-07-03 14:51:29
合計ジャッジ時間 3,674 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 142 ms
82,816 KB
testcase_05 AC 55 ms
76,544 KB
testcase_06 AC 140 ms
82,560 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 61 ms
80,128 KB
testcase_10 AC 37 ms
52,480 KB
testcase_11 AC 51 ms
62,976 KB
testcase_12 AC 62 ms
72,704 KB
testcase_13 AC 73 ms
84,352 KB
testcase_14 AC 55 ms
69,632 KB
testcase_15 AC 57 ms
69,248 KB
testcase_16 AC 77 ms
87,808 KB
testcase_17 AC 58 ms
71,552 KB
testcase_18 AC 67 ms
79,360 KB
testcase_19 AC 74 ms
84,480 KB
testcase_20 AC 53 ms
66,688 KB
testcase_21 AC 55 ms
70,000 KB
testcase_22 AC 54 ms
68,096 KB
testcase_23 AC 65 ms
75,648 KB
testcase_24 AC 60 ms
74,112 KB
testcase_25 AC 73 ms
84,224 KB
testcase_26 AC 82 ms
86,016 KB
testcase_27 AC 82 ms
85,760 KB
testcase_28 AC 83 ms
86,016 KB
testcase_29 AC 82 ms
85,760 KB
testcase_30 AC 83 ms
85,888 KB
testcase_31 AC 82 ms
86,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
a = list(map(int, input().split()))
mod = 10 ** 9 + 7
if 0 in a:
  print(0)
  exit(0)
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