結果

問題 No.1237 EXP Multiple!
ユーザー c-yanc-yan
提出日時 2020-09-27 00:03:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,692 KB
最終ジャッジ日時 2024-06-30 01:17:41
合計ジャッジ時間 3,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 113 ms
26,016 KB
testcase_02 AC 146 ms
31,684 KB
testcase_03 AC 150 ms
32,540 KB
testcase_04 AC 100 ms
32,692 KB
testcase_05 AC 70 ms
14,308 KB
testcase_06 AC 71 ms
14,176 KB
testcase_07 AC 74 ms
14,432 KB
testcase_08 AC 136 ms
14,308 KB
testcase_09 AC 70 ms
14,308 KB
testcase_10 AC 74 ms
14,308 KB
testcase_11 AC 69 ms
14,432 KB
testcase_12 AC 70 ms
14,304 KB
testcase_13 AC 124 ms
14,180 KB
testcase_14 AC 127 ms
14,280 KB
testcase_15 AC 127 ms
14,304 KB
testcase_16 AC 126 ms
14,436 KB
testcase_17 AC 126 ms
14,308 KB
testcase_18 AC 124 ms
14,436 KB
testcase_19 AC 70 ms
14,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = 1000000007


def make_factorial_table(n):
    result = [0] * (n + 1)
    result[0] = 1
    for i in range(1, n + 1):
        result[i] = result[i - 1] * i % m
    return result


N, *A = map(int, open(0).read().split())

A.sort()

if A[0] == 0:
    print(-1)
    exit()

if A[-1] >= 4:
    print(m)
    exit()

fac = make_factorial_table(3)

t = 1
for a in A:
    t *= pow(a, fac[a])
    if t > m:
        break
print(m % t)
0