結果

問題 No.1084 積の積
ユーザー 👑 rin204rin204
提出日時 2022-07-06 07:16:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 86,016 KB
最終ジャッジ日時 2024-12-18 01:21:50
合計ジャッジ時間 4,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 186 ms
79,488 KB
testcase_05 AC 61 ms
76,416 KB
testcase_06 AC 189 ms
79,104 KB
testcase_07 AC 41 ms
51,940 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 66 ms
81,664 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 55 ms
62,336 KB
testcase_12 AC 91 ms
71,552 KB
testcase_13 AC 136 ms
83,072 KB
testcase_14 AC 80 ms
68,740 KB
testcase_15 AC 78 ms
68,660 KB
testcase_16 AC 150 ms
86,016 KB
testcase_17 AC 87 ms
70,400 KB
testcase_18 AC 115 ms
78,080 KB
testcase_19 AC 137 ms
82,816 KB
testcase_20 AC 70 ms
65,920 KB
testcase_21 AC 80 ms
68,608 KB
testcase_22 AC 76 ms
67,188 KB
testcase_23 AC 106 ms
74,240 KB
testcase_24 AC 101 ms
72,960 KB
testcase_25 AC 139 ms
82,944 KB
testcase_26 AC 146 ms
82,432 KB
testcase_27 AC 150 ms
82,688 KB
testcase_28 AC 150 ms
82,304 KB
testcase_29 AC 147 ms
82,560 KB
testcase_30 AC 146 ms
82,816 KB
testcase_31 AC 148 ms
83,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n = int(input())
A = list(map(int, input().split()))
if 0 in A:
    print(0)
    exit()

prod = 1
prod_all = 1
ans = 1
r = 0
A.append(10 ** 10)
for l in range(n):
    while prod * A[r] < 10 ** 9:
        prod *= A[r]
        prod_all *= prod
        prod_all %= MOD
        r += 1
    ans *= prod_all
    ans %= MOD
    le = r - l
    prod //= A[l]
    prod_all *= pow(A[l], le * (MOD - 2), MOD)
    prod_all %= MOD
print(ans)
0