結果

問題 No.1084 積の積
ユーザー c-yanc-yan
提出日時 2020-06-20 06:21:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 605 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,464 KB
最終ジャッジ日時 2024-07-03 16:46:43
合計ジャッジ時間 10,404 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 192 ms
12,624 KB
testcase_05 AC 151 ms
12,496 KB
testcase_06 AC 169 ms
12,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 426 ms
20,840 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 48 ms
11,136 KB
testcase_12 AC 257 ms
15,248 KB
testcase_13 AC 519 ms
20,180 KB
testcase_14 AC 203 ms
14,140 KB
testcase_15 AC 188 ms
13,828 KB
testcase_16 AC 573 ms
21,464 KB
testcase_17 AC 238 ms
14,560 KB
testcase_18 AC 375 ms
17,560 KB
testcase_19 AC 527 ms
20,276 KB
testcase_20 AC 132 ms
12,616 KB
testcase_21 AC 207 ms
14,156 KB
testcase_22 AC 166 ms
13,356 KB
testcase_23 AC 318 ms
16,552 KB
testcase_24 AC 283 ms
15,924 KB
testcase_25 AC 517 ms
20,092 KB
testcase_26 AC 605 ms
19,484 KB
testcase_27 AC 601 ms
19,352 KB
testcase_28 AC 577 ms
19,608 KB
testcase_29 AC 578 ms
19,608 KB
testcase_30 AC 576 ms
19,392 KB
testcase_31 AC 573 ms
19,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

m = 1000000007
l = 0
a = 1
b = 1
result = 1
for r in range(N):
    a *= A[r]
    b *= pow(A[r], r - l + 1, m)
    b %= m
    while a >= 1000000000:
        b *= pow(a, m - 2, m)
        a //= A[l]
        l += 1
    result *= b
    result %= m
print(result)
0