結果

問題 No.1084 積の積
ユーザー marroncastlemarroncastle
提出日時 2020-06-20 00:12:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,624 KB
最終ジャッジ日時 2024-07-03 16:16:42
合計ジャッジ時間 4,853 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 257 ms
16,016 KB
testcase_05 AC 219 ms
16,020 KB
testcase_06 AC 246 ms
16,144 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 276 ms
20,880 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 33 ms
11,136 KB
testcase_12 AC 80 ms
15,276 KB
testcase_13 AC 144 ms
20,212 KB
testcase_14 AC 70 ms
14,164 KB
testcase_15 AC 67 ms
13,960 KB
testcase_16 AC 161 ms
21,624 KB
testcase_17 AC 79 ms
14,904 KB
testcase_18 AC 113 ms
17,856 KB
testcase_19 AC 143 ms
20,436 KB
testcase_20 AC 55 ms
12,900 KB
testcase_21 AC 71 ms
14,188 KB
testcase_22 AC 61 ms
13,380 KB
testcase_23 AC 98 ms
16,580 KB
testcase_24 AC 91 ms
15,956 KB
testcase_25 AC 143 ms
20,376 KB
testcase_26 AC 174 ms
19,672 KB
testcase_27 AC 175 ms
19,516 KB
testcase_28 AC 175 ms
19,644 KB
testcase_29 AC 177 ms
19,672 KB
testcase_30 AC 174 ms
19,648 KB
testcase_31 AC 173 ms
19,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    ans = 1
    mod = 10**9+7
    N = int(input())
    A = list(map(int, input().split()))
    imos = [0]*(N+2)
    start = 0
    prod = 1
    for end in range(N):
        prod *= A[end]
        while prod>=10**9:
            prod //= A[start]
            start += 1
        imos[start] += 1
        imos[end+1] -= end+2-start
        imos[end+2] += end+1-start
    for i in range(1,N+1):
        imos[i] += imos[i-1]
    for i in range(1,N+1):
        imos[i] += imos[i-1]
    for i in range(N):
        ans *= pow(A[i],imos[i],mod)
        ans %= mod
    return ans
print(solve())
0