結果

問題 No.1084 積の積
ユーザー c-yanc-yan
提出日時 2020-07-30 03:40:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 636 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,628 KB
最終ジャッジ日時 2024-07-01 11:04:21
合計ジャッジ時間 11,826 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 207 ms
12,628 KB
testcase_05 AC 174 ms
12,624 KB
testcase_06 AC 184 ms
12,620 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 465 ms
20,964 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 51 ms
11,136 KB
testcase_12 AC 275 ms
15,240 KB
testcase_13 AC 552 ms
20,176 KB
testcase_14 AC 217 ms
14,012 KB
testcase_15 AC 200 ms
13,952 KB
testcase_16 AC 625 ms
21,628 KB
testcase_17 AC 256 ms
14,812 KB
testcase_18 AC 414 ms
17,824 KB
testcase_19 AC 556 ms
20,400 KB
testcase_20 AC 146 ms
12,872 KB
testcase_21 AC 219 ms
14,156 KB
testcase_22 AC 173 ms
13,484 KB
testcase_23 AC 348 ms
16,552 KB
testcase_24 AC 308 ms
16,052 KB
testcase_25 AC 547 ms
20,348 KB
testcase_26 AC 630 ms
19,612 KB
testcase_27 AC 636 ms
19,608 KB
testcase_28 AC 635 ms
19,608 KB
testcase_29 AC 635 ms
19,480 KB
testcase_30 AC 635 ms
19,484 KB
testcase_31 AC 634 ms
19,616 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