結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 213 ms
12,676 KB
testcase_05 AC 179 ms
12,552 KB
testcase_06 AC 183 ms
12,548 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 453 ms
20,964 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 47 ms
11,008 KB
testcase_12 AC 272 ms
15,308 KB
testcase_13 AC 543 ms
20,300 KB
testcase_14 AC 216 ms
14,092 KB
testcase_15 AC 199 ms
13,788 KB
testcase_16 AC 642 ms
21,592 KB
testcase_17 AC 254 ms
14,812 KB
testcase_18 AC 419 ms
17,712 KB
testcase_19 AC 546 ms
20,244 KB
testcase_20 AC 143 ms
12,868 KB
testcase_21 AC 222 ms
14,236 KB
testcase_22 AC 171 ms
13,316 KB
testcase_23 AC 343 ms
16,336 KB
testcase_24 AC 307 ms
15,844 KB
testcase_25 AC 553 ms
20,192 KB
testcase_26 AC 626 ms
19,876 KB
testcase_27 AC 618 ms
19,872 KB
testcase_28 AC 630 ms
19,876 KB
testcase_29 AC 641 ms
19,880 KB
testcase_30 AC 653 ms
19,884 KB
testcase_31 AC 644 ms
20,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p=1000000007
N,*A=map(int, open(0).read().split())
l,a,b,c=0,1,1,1
for r in range(N):
	a*=A[r]
	b*=pow(A[r],r-l+1,p)
	b%=p
	while a>=p-7:
		b*=pow(a,p-2,p)
		a//=A[l]
		l+=1
	c*=b
	c%=p
print(c)
0