結果

問題 No.1237 EXP Multiple!
ユーザー oevloevl
提出日時 2020-10-26 00:48:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,176 KB
最終ジャッジ日時 2024-07-21 21:11:01
合計ジャッジ時間 3,000 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 86 ms
26,028 KB
testcase_02 AC 105 ms
31,820 KB
testcase_03 AC 112 ms
32,780 KB
testcase_04 AC 107 ms
33,176 KB
testcase_05 AC 67 ms
14,768 KB
testcase_06 AC 87 ms
14,764 KB
testcase_07 AC 70 ms
14,768 KB
testcase_08 AC 121 ms
14,764 KB
testcase_09 AC 68 ms
14,768 KB
testcase_10 AC 66 ms
14,636 KB
testcase_11 AC 84 ms
14,768 KB
testcase_12 AC 82 ms
14,544 KB
testcase_13 AC 119 ms
14,764 KB
testcase_14 AC 119 ms
14,768 KB
testcase_15 AC 118 ms
14,640 KB
testcase_16 AC 122 ms
14,764 KB
testcase_17 AC 116 ms
14,636 KB
testcase_18 AC 120 ms
14,768 KB
testcase_19 AC 74 ms
14,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
mod = 10 ** 9 + 7

if any(va == 0 for va in a):
    print(-1)
    exit(0)
if any(va > 3 for va in a):
    print(mod)
    exit(0)

f = [1]
for i in range(3):
    f.append(f[-1] * (i + 1))
for i in range(len(f)):
    f[i] = pow(i, f[i])

ans = 1

for va in a:
    if ans > mod:
        print(mod)
        exit(0)
    else:
        ans *= f[va]

print(mod % ans)
0