結果

問題 No.1237 EXP Multiple!
ユーザー tktk_snsntktk_snsn
提出日時 2021-03-23 23:52:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,148 KB
最終ジャッジ日時 2024-11-26 07:22:37
合計ジャッジ時間 2,546 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 75 ms
26,140 KB
testcase_02 AC 99 ms
31,940 KB
testcase_03 AC 95 ms
32,640 KB
testcase_04 AC 94 ms
33,148 KB
testcase_05 AC 60 ms
14,612 KB
testcase_06 AC 67 ms
14,744 KB
testcase_07 AC 64 ms
14,544 KB
testcase_08 AC 90 ms
14,712 KB
testcase_09 AC 62 ms
14,616 KB
testcase_10 AC 61 ms
14,740 KB
testcase_11 AC 66 ms
14,612 KB
testcase_12 AC 67 ms
14,616 KB
testcase_13 AC 91 ms
14,608 KB
testcase_14 AC 91 ms
14,616 KB
testcase_15 AC 86 ms
14,612 KB
testcase_16 AC 84 ms
14,612 KB
testcase_17 AC 85 ms
14,616 KB
testcase_18 AC 84 ms
14,612 KB
testcase_19 AC 64 ms
14,488 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