結果

問題 No.1237 EXP Multiple!
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-09-25 23:44:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,748 KB
最終ジャッジ日時 2024-06-28 08:40:41
合計ジャッジ時間 3,569 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 86 ms
26,984 KB
testcase_02 AC 109 ms
32,424 KB
testcase_03 AC 105 ms
32,748 KB
testcase_04 AC 107 ms
32,676 KB
testcase_05 AC 67 ms
14,732 KB
testcase_06 AC 72 ms
14,476 KB
testcase_07 AC 71 ms
14,600 KB
testcase_08 AC 210 ms
14,476 KB
testcase_09 AC 69 ms
14,496 KB
testcase_10 AC 69 ms
14,728 KB
testcase_11 AC 72 ms
14,604 KB
testcase_12 AC 182 ms
14,664 KB
testcase_13 AC 200 ms
14,604 KB
testcase_14 AC 198 ms
14,600 KB
testcase_15 AC 199 ms
14,600 KB
testcase_16 AC 202 ms
14,724 KB
testcase_17 AC 202 ms
14,732 KB
testcase_18 AC 203 ms
14,604 KB
testcase_19 AC 72 ms
14,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
if 0 in a:
    print(-1)
    exit()
mod = 10**9+7
count = 1
for i in a:
    if i >= 4:
        print(mod)
        exit()
    x = 1
    for j in range(1,i+1):
        x *= j
    count *= pow(i,x)
    if count > mod:
        print(mod)
        exit()
print(mod%count) 
0