結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 87 ms
26,300 KB
testcase_02 AC 113 ms
31,964 KB
testcase_03 AC 107 ms
32,824 KB
testcase_04 AC 111 ms
32,716 KB
testcase_05 AC 67 ms
14,044 KB
testcase_06 AC 84 ms
14,300 KB
testcase_07 AC 69 ms
14,296 KB
testcase_08 AC 127 ms
14,296 KB
testcase_09 AC 67 ms
14,296 KB
testcase_10 AC 68 ms
14,040 KB
testcase_11 AC 84 ms
14,296 KB
testcase_12 AC 85 ms
14,172 KB
testcase_13 WA -
testcase_14 AC 129 ms
14,172 KB
testcase_15 AC 127 ms
14,172 KB
testcase_16 AC 127 ms
14,264 KB
testcase_17 AC 128 ms
14,300 KB
testcase_18 AC 129 ms
14,300 KB
testcase_19 AC 78 ms
14,172 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)
if all(va == 1 for va in a):
    print(-1)
    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