結果

問題 No.1237 EXP Multiple!
ユーザー hir355hir355
提出日時 2020-09-25 21:40:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-06-28 08:31:26
合計ジャッジ時間 2,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 77 ms
91,648 KB
testcase_02 AC 85 ms
105,856 KB
testcase_03 AC 96 ms
101,632 KB
testcase_04 AC 102 ms
101,760 KB
testcase_05 AC 72 ms
95,360 KB
testcase_06 AC 72 ms
94,976 KB
testcase_07 AC 74 ms
95,616 KB
testcase_08 AC 78 ms
97,920 KB
testcase_09 AC 73 ms
95,232 KB
testcase_10 AC 75 ms
95,616 KB
testcase_11 AC 73 ms
95,488 KB
testcase_12 AC 78 ms
97,920 KB
testcase_13 AC 77 ms
97,536 KB
testcase_14 AC 78 ms
97,664 KB
testcase_15 AC 78 ms
97,664 KB
testcase_16 AC 79 ms
98,048 KB
testcase_17 AC 79 ms
97,920 KB
testcase_18 AC 79 ms
98,048 KB
testcase_19 AC 72 ms
95,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
n = int(input())
a = list(map(int, input().split()))
if 0 in a:
    print(-1)
else:
    ans = 1
    for x in a:
        if x >= 4:
            print(MOD)
            break
        f = 1
        for i in range(x):
            f *= (i + 1)
        for i in range(f):
            ans *= x
        if ans > MOD:
            print(MOD)
            break
    else:
        print(MOD % ans)
0