結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 156 ms
12,492 KB
testcase_06 AC 173 ms
12,508 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 432 ms
20,708 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 46 ms
11,136 KB
testcase_12 AC 247 ms
15,180 KB
testcase_13 AC 531 ms
20,052 KB
testcase_14 AC 205 ms
13,972 KB
testcase_15 AC 185 ms
13,796 KB
testcase_16 AC 573 ms
21,576 KB
testcase_17 AC 235 ms
14,808 KB
testcase_18 AC 374 ms
17,464 KB
testcase_19 AC 506 ms
20,412 KB
testcase_20 AC 132 ms
12,748 KB
testcase_21 AC 203 ms
14,168 KB
testcase_22 AC 156 ms
13,372 KB
testcase_23 AC 302 ms
16,312 KB
testcase_24 AC 283 ms
15,812 KB
testcase_25 AC 495 ms
20,224 KB
testcase_26 AC 573 ms
19,484 KB
testcase_27 AC 578 ms
19,384 KB
testcase_28 AC 559 ms
19,484 KB
testcase_29 AC 579 ms
19,488 KB
testcase_30 AC 570 ms
19,480 KB
testcase_31 AC 564 ms
19,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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