結果

問題 No.1237 EXP Multiple!
ユーザー tktk_snsntktk_snsn
提出日時 2021-03-23 23:52:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,404 KB
最終ジャッジ日時 2024-05-04 17:55:54
合計ジャッジ時間 3,199 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,880 KB
testcase_01 AC 101 ms
26,272 KB
testcase_02 AC 100 ms
31,944 KB
testcase_03 AC 99 ms
32,892 KB
testcase_04 AC 101 ms
33,404 KB
testcase_05 AC 68 ms
14,744 KB
testcase_06 AC 75 ms
14,868 KB
testcase_07 AC 69 ms
14,724 KB
testcase_08 AC 98 ms
14,744 KB
testcase_09 AC 69 ms
14,836 KB
testcase_10 AC 68 ms
14,872 KB
testcase_11 AC 75 ms
14,868 KB
testcase_12 AC 74 ms
14,868 KB
testcase_13 AC 92 ms
14,740 KB
testcase_14 AC 93 ms
14,872 KB
testcase_15 AC 92 ms
14,748 KB
testcase_16 AC 92 ms
14,868 KB
testcase_17 AC 93 ms
14,844 KB
testcase_18 AC 94 ms
14,740 KB
testcase_19 AC 73 ms
14,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math


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

    mod = 10 ** 9 + 7

    if 0 in A:
        return -1
    for a in A:
        if a >= 4:
            return mod
    ans = 1
    for a in A:
        ans *= a ** math.factorial(a)
        if ans > mod:
            return mod
    return mod % ans


print(main())
0