結果

問題 No.1237 EXP Multiple!
ユーザー keijakkeijak
提出日時 2020-09-25 22:20:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,920 KB
最終ジャッジ日時 2024-06-28 08:35:08
合計ジャッジ時間 3,025 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 88 ms
26,044 KB
testcase_02 AC 109 ms
31,840 KB
testcase_03 AC 108 ms
32,544 KB
testcase_04 AC 110 ms
32,920 KB
testcase_05 AC 78 ms
14,376 KB
testcase_06 AC 79 ms
14,536 KB
testcase_07 AC 79 ms
14,532 KB
testcase_08 AC 120 ms
14,408 KB
testcase_09 AC 78 ms
14,532 KB
testcase_10 AC 78 ms
14,408 KB
testcase_11 AC 79 ms
14,532 KB
testcase_12 AC 109 ms
14,536 KB
testcase_13 AC 114 ms
14,584 KB
testcase_14 AC 114 ms
14,536 KB
testcase_15 AC 113 ms
14,408 KB
testcase_16 AC 113 ms
14,372 KB
testcase_17 AC 113 ms
14,540 KB
testcase_18 AC 114 ms
14,408 KB
testcase_19 AC 80 ms
14,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 8)
ini = lambda: int(sys.stdin.readline())
inl = lambda: [int(x) for x in sys.stdin.readline().split()]
ins = lambda: sys.stdin.readline().rstrip()
debug = lambda *a, **kw: print("\033[33m", *a, "\033[0m", **dict(file=sys.stderr, **kw))

N = ini()
A = inl()
M = 10 ** 9 + 7


def solve():
    if any([x == 0 for x in A]):
        return -1

    ans = 1
    for x in A:
        for k in range(2, x + 1):
            x = x ** k
            if x > M:
                return M
        ans *= x
        if ans > M:
            return M
    return M % ans


print(solve())
0