結果

問題 No.1084 積の積
ユーザー neterukunneterukun
提出日時 2020-06-20 12:42:45
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 516 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 91,348 KB
最終ジャッジ日時 2024-07-03 17:05:16
合計ジャッジ時間 4,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,156 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 174 ms
80,512 KB
testcase_05 RE -
testcase_06 AC 173 ms
80,384 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 49 ms
62,720 KB
testcase_12 AC 87 ms
72,448 KB
testcase_13 AC 131 ms
83,328 KB
testcase_14 AC 76 ms
69,248 KB
testcase_15 AC 73 ms
69,100 KB
testcase_16 AC 143 ms
86,400 KB
testcase_17 AC 82 ms
71,040 KB
testcase_18 AC 110 ms
78,080 KB
testcase_19 AC 132 ms
83,584 KB
testcase_20 AC 64 ms
66,688 KB
testcase_21 AC 76 ms
69,248 KB
testcase_22 AC 69 ms
67,584 KB
testcase_23 AC 97 ms
74,752 KB
testcase_24 AC 92 ms
73,472 KB
testcase_25 AC 131 ms
82,944 KB
testcase_26 AC 151 ms
85,376 KB
testcase_27 AC 151 ms
85,760 KB
testcase_28 AC 151 ms
85,376 KB
testcase_29 AC 152 ms
85,248 KB
testcase_30 AC 151 ms
85,376 KB
testcase_31 AC 156 ms
85,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
LIMIT = 10 ** 9
MOD = 10 ** 9 + 7


# 区間[l, r)を考えつつつ、lとrを尺取りする
r = 0
ru_val = 1
ptn_val = 1
ans = 1
for l in range(n):
    if l > 0:
        ru_val //= a[l - 1]
        ptn_val *= pow(pow(a[l - 1], (r - (l - 1)), MOD), MOD - 2, MOD)
        ptn_val %= MOD
    while r < n and  ru_val * a[r] < LIMIT:
        ru_val *= a[r]
        ptn_val *= ru_val
        ptn_val %= MOD
        r += 1
    ans *= ptn_val
    ans %= MOD
print(ans)
0