結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 WA -
testcase_05 AC 174 ms
12,676 KB
testcase_06 AC 189 ms
12,548 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 466 ms
20,836 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 50 ms
11,008 KB
testcase_12 AC 278 ms
15,180 KB
testcase_13 AC 549 ms
20,172 KB
testcase_14 AC 217 ms
14,100 KB
testcase_15 AC 200 ms
13,788 KB
testcase_16 AC 627 ms
21,588 KB
testcase_17 AC 259 ms
14,808 KB
testcase_18 AC 415 ms
17,840 KB
testcase_19 AC 558 ms
20,244 KB
testcase_20 AC 147 ms
12,880 KB
testcase_21 AC 219 ms
14,104 KB
testcase_22 AC 174 ms
13,324 KB
testcase_23 AC 342 ms
16,340 KB
testcase_24 AC 314 ms
15,848 KB
testcase_25 AC 552 ms
20,192 KB
testcase_26 AC 632 ms
19,876 KB
testcase_27 AC 638 ms
19,872 KB
testcase_28 AC 641 ms
19,876 KB
testcase_29 AC 644 ms
19,896 KB
testcase_30 AC 639 ms
20,004 KB
testcase_31 AC 639 ms
20,000 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:
		b*=pow(a,p-2,p)
		a//=A[l]
		l+=1
	c*=b
	c%=p
print(c)
0