結果

問題 No.1084 積の積
ユーザー hedwig100hedwig100
提出日時 2020-06-19 23:01:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 86,272 KB
最終ジャッジ日時 2024-07-03 15:29:15
合計ジャッジ時間 3,098 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,224 KB
testcase_01 AC 34 ms
52,832 KB
testcase_02 AC 33 ms
52,952 KB
testcase_03 AC 34 ms
53,572 KB
testcase_04 AC 135 ms
84,300 KB
testcase_05 AC 51 ms
77,788 KB
testcase_06 AC 133 ms
85,476 KB
testcase_07 AC 37 ms
52,744 KB
testcase_08 AC 37 ms
54,084 KB
testcase_09 AC 58 ms
82,012 KB
testcase_10 AC 36 ms
52,824 KB
testcase_11 AC 43 ms
62,172 KB
testcase_12 AC 54 ms
73,512 KB
testcase_13 AC 64 ms
83,824 KB
testcase_14 AC 53 ms
69,644 KB
testcase_15 AC 52 ms
68,712 KB
testcase_16 AC 68 ms
86,160 KB
testcase_17 AC 54 ms
71,112 KB
testcase_18 AC 60 ms
79,552 KB
testcase_19 AC 64 ms
83,956 KB
testcase_20 AC 46 ms
67,784 KB
testcase_21 AC 50 ms
69,296 KB
testcase_22 AC 49 ms
67,320 KB
testcase_23 AC 57 ms
76,072 KB
testcase_24 AC 55 ms
74,256 KB
testcase_25 AC 71 ms
83,160 KB
testcase_26 AC 80 ms
85,404 KB
testcase_27 AC 80 ms
85,856 KB
testcase_28 AC 78 ms
84,960 KB
testcase_29 AC 74 ms
85,028 KB
testcase_30 AC 74 ms
86,272 KB
testcase_31 AC 73 ms
85,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000000)
MOD = 10 ** 9 + 7
INF = 10 ** 9

def main():
    N = int(input())
    A = list(map(int,input().split()))

    if 0 in A:
        print(0)
        return

    r = 0
    now = 1
    cnt = [0] * (N + 1)
    for l in range(N):
        while r < N and now * A[r] < INF:
            now *= A[r]
            r += 1
        if l > 0:
            cnt[l - 1] -= r - l + 1
        if r > 0:
            cnt[r - 1] += 1
        if l > 1:
            cnt[l - 2] += r - l
        now //= A[l]

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

    ans = 1
    for i in range(N):
        ans *= pow(A[i],cnt[i],MOD)
        ans %= MOD
    print(ans)
  
if __name__ == '__main__':
    main()
0