結果

問題 No.1084 積の積
ユーザー neterukunneterukun
提出日時 2020-06-20 12:50:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 931 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 95,756 KB
最終ジャッジ日時 2024-07-03 17:11:01
合計ジャッジ時間 4,585 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 189 ms
94,712 KB
testcase_05 AC 69 ms
87,680 KB
testcase_06 AC 188 ms
94,592 KB
testcase_07 AC 38 ms
52,284 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 54 ms
63,232 KB
testcase_12 AC 93 ms
75,264 KB
testcase_13 AC 139 ms
89,728 KB
testcase_14 AC 80 ms
71,424 KB
testcase_15 AC 80 ms
71,424 KB
testcase_16 AC 145 ms
93,056 KB
testcase_17 AC 87 ms
73,728 KB
testcase_18 AC 112 ms
83,072 KB
testcase_19 AC 139 ms
89,472 KB
testcase_20 AC 68 ms
67,584 KB
testcase_21 AC 80 ms
71,296 KB
testcase_22 AC 71 ms
69,120 KB
testcase_23 AC 99 ms
78,592 KB
testcase_24 AC 96 ms
77,056 KB
testcase_25 AC 136 ms
89,472 KB
testcase_26 AC 151 ms
91,904 KB
testcase_27 AC 156 ms
91,648 KB
testcase_28 AC 159 ms
92,160 KB
testcase_29 AC 160 ms
91,776 KB
testcase_30 AC 160 ms
92,032 KB
testcase_31 AC 157 ms
91,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
LIMIT = 10 ** 9
MOD = 10 ** 9 + 7

dist = []
tmp = []
for i in range(n + 1):
    if i == n or a[i] == 0:
        dist.append(tmp)
        tmp = []
    else:
        tmp.append(a[i])
def solve(a, n):
    # 区間[l, r)を考えつつつ、lとrを尺取りする
    r = 0
    ru_val = 1
    ptn_val = 1
    ans = 1
    for l in range(n):
        if l > 0:
            ru_val //= a[l - 1]
            ptn_val *= pow(pow(a[l - 1], (r - (l - 1)), MOD), MOD - 2, MOD)
            ptn_val %= MOD
        while r < n and  ru_val * a[r] < LIMIT:
            ru_val *= a[r]
            ptn_val *= ru_val
            ptn_val %= MOD
            r += 1
        ans *= ptn_val
        ans %= MOD
    return ans
  
ans = 1
flag = False
for li in dist:
    if not li:
        continue
    flag = True
    ans *= solve(li, len(li))
    ans %= MOD
if not flag:
    print(0)
else:
    print(ans)
0