結果

問題 No.1084 積の積
ユーザー c-yanc-yan
提出日時 2020-07-30 04:51:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,596 KB
最終ジャッジ日時 2024-07-02 00:32:56
合計ジャッジ時間 8,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 206 ms
12,296 KB
testcase_05 AC 177 ms
12,424 KB
testcase_06 AC 183 ms
12,432 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 349 ms
20,844 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 43 ms
11,008 KB
testcase_12 AC 189 ms
15,184 KB
testcase_13 AC 412 ms
20,052 KB
testcase_14 AC 154 ms
14,100 KB
testcase_15 AC 143 ms
13,532 KB
testcase_16 AC 423 ms
21,596 KB
testcase_17 AC 176 ms
14,816 KB
testcase_18 AC 282 ms
17,716 KB
testcase_19 AC 369 ms
20,124 KB
testcase_20 AC 105 ms
12,740 KB
testcase_21 AC 151 ms
13,988 KB
testcase_22 AC 124 ms
13,320 KB
testcase_23 AC 234 ms
16,212 KB
testcase_24 AC 212 ms
15,980 KB
testcase_25 AC 373 ms
20,064 KB
testcase_26 AC 428 ms
19,760 KB
testcase_27 AC 427 ms
19,876 KB
testcase_28 AC 428 ms
19,880 KB
testcase_29 AC 425 ms
20,012 KB
testcase_30 AC 429 ms
19,884 KB
testcase_31 AC 427 ms
19,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,*A=(map(int,open(0).read().split()))
m=1000000007
l=0
a=1
b=1
x=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,-1,m)
        a//= A[l]
        l+=1
    x*=b
    x%=m
print(x)
0