結果

問題 No.1084 積の積
ユーザー ああいいああいい
提出日時 2022-02-23 14:04:45
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 427 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 90,820 KB
最終ジャッジ日時 2024-07-01 13:49:00
合計ジャッジ時間 5,342 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,016 KB
testcase_01 AC 39 ms
52,772 KB
testcase_02 AC 38 ms
52,676 KB
testcase_03 AC 38 ms
52,420 KB
testcase_04 AC 221 ms
88,808 KB
testcase_05 RE -
testcase_06 AC 175 ms
81,024 KB
testcase_07 RE -
testcase_08 AC 38 ms
52,120 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 52 ms
62,836 KB
testcase_12 AC 93 ms
77,556 KB
testcase_13 AC 143 ms
89,092 KB
testcase_14 AC 81 ms
72,424 KB
testcase_15 AC 79 ms
72,168 KB
testcase_16 AC 157 ms
90,672 KB
testcase_17 AC 88 ms
75,708 KB
testcase_18 AC 121 ms
85,280 KB
testcase_19 AC 143 ms
88,696 KB
testcase_20 AC 67 ms
69,036 KB
testcase_21 AC 81 ms
73,188 KB
testcase_22 AC 73 ms
70,560 KB
testcase_23 AC 104 ms
80,188 KB
testcase_24 AC 99 ms
79,004 KB
testcase_25 AC 145 ms
88,544 KB
testcase_26 AC 165 ms
88,956 KB
testcase_27 AC 165 ms
88,980 KB
testcase_28 AC 164 ms
88,864 KB
testcase_29 AC 166 ms
88,996 KB
testcase_30 AC 167 ms
89,176 KB
testcase_31 AC 165 ms
88,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
P = 10 ** 9 + 7
ans = 1
souseki = 1
seki = 1
right = 0
for left in range(N):
    while right < N and seki * A[right] < 10 ** 9:
        seki *= A[right]
        souseki = souseki * seki % P
        right += 1
    ans = ans * souseki % P
    inv = pow(A[left],P-2,P)
    seki = seki // A[left]
    delta = right - left
    souseki = souseki * pow(inv,right-left,P)
print(ans)
0