結果

問題 No.1237 EXP Multiple!
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-06-20 22:44:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-06-22 22:41:40
合計ジャッジ時間 3,630 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 90 ms
92,672 KB
testcase_02 AC 91 ms
107,776 KB
testcase_03 AC 93 ms
101,888 KB
testcase_04 AC 95 ms
102,144 KB
testcase_05 AC 69 ms
96,256 KB
testcase_06 AC 70 ms
96,512 KB
testcase_07 AC 69 ms
95,872 KB
testcase_08 AC 93 ms
103,808 KB
testcase_09 AC 74 ms
96,128 KB
testcase_10 AC 79 ms
96,512 KB
testcase_11 AC 74 ms
96,384 KB
testcase_12 AC 72 ms
96,256 KB
testcase_13 AC 96 ms
104,148 KB
testcase_14 AC 93 ms
104,064 KB
testcase_15 AC 111 ms
104,064 KB
testcase_16 AC 97 ms
103,808 KB
testcase_17 AC 96 ms
104,320 KB
testcase_18 AC 96 ms
104,192 KB
testcase_19 AC 71 ms
96,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))

def fact(n):
    ret = 1
    for i in range(1,n+1):
        ret *= i
    return ret

if min(a) == 0:
    print(-1)
elif max(a) >= 4:
    print(10**9 + 7)

else:
    ans = 1
    for x in a:
        ans *= x**fact(x)
        if ans >= 10**9 + 7:
            print(10**9 + 7)
            exit()
    print((10**9 + 7)%ans)

0