結果

問題 No.1084 積の積
ユーザー ttrttr
提出日時 2020-06-19 23:31:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 519 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,508 KB
最終ジャッジ日時 2024-07-03 15:53:36
合計ジャッジ時間 6,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 WA -
testcase_05 AC 276 ms
15,396 KB
testcase_06 AC 292 ms
15,260 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 328 ms
20,960 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 33 ms
11,264 KB
testcase_12 AC 108 ms
15,288 KB
testcase_13 AC 201 ms
20,236 KB
testcase_14 AC 91 ms
14,312 KB
testcase_15 AC 87 ms
13,840 KB
testcase_16 AC 223 ms
21,508 KB
testcase_17 AC 100 ms
14,912 KB
testcase_18 AC 152 ms
17,864 KB
testcase_19 AC 196 ms
20,444 KB
testcase_20 AC 65 ms
12,916 KB
testcase_21 AC 92 ms
14,068 KB
testcase_22 AC 74 ms
13,520 KB
testcase_23 AC 134 ms
16,464 KB
testcase_24 AC 121 ms
15,968 KB
testcase_25 AC 199 ms
20,260 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(a) for a in input().split()]
mod = 10**9+7

L = [0]*N
r = 0
num = 1
for i in range(N):
    while r < N and num*A[r] < 10**9:
        num *= A[r]
        if r > i:
            L[r] -= 1
        r += 1
    if r < N:
        L[r] -= 1
        L[i] += r-i
        num //= A[i]
    else:
        l = i
        break

for i in range(N-1):
    L[i+1] += L[i]

for i in range(l, N):
    L[i] += (i-l+1)*(N-i) + i-l

ans = 1
for i in range(N):
    ans *= pow(A[i], L[i], mod)
    ans %= mod

print(ans)
0