結果
問題 | No.1084 積の積 |
ユーザー | c-yan |
提出日時 | 2020-06-20 06:09:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 342 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,716 KB |
最終ジャッジ日時 | 2024-07-03 16:44:09 |
合計ジャッジ時間 | 10,513 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,624 KB |
testcase_01 | AC | 27 ms
10,752 KB |
testcase_02 | AC | 26 ms
10,752 KB |
testcase_03 | WA | - |
testcase_04 | AC | 184 ms
12,492 KB |
testcase_05 | AC | 153 ms
12,492 KB |
testcase_06 | AC | 161 ms
12,620 KB |
testcase_07 | AC | 26 ms
10,624 KB |
testcase_08 | AC | 26 ms
10,752 KB |
testcase_09 | AC | 420 ms
20,580 KB |
testcase_10 | AC | 27 ms
10,752 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
N = int(input()) A = list(map(int, input().split())) l = 0 a = 1 b = 1 result = 1 for r in range(N): a *= A[r] b *= pow(A[r], r - l + 1, 1000000007) b %= 1000000007 while a >= 1000000000: b *= pow(a, 1000000007 - 2, 1000000007) a //= A[r] l += 1 result *= b result %= 1000000007 print(result)