結果

問題 No.1237 EXP Multiple!
ユーザー rlangevinrlangevin
提出日時 2023-01-02 14:37:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-05-05 06:19:41
合計ジャッジ時間 2,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 72 ms
92,672 KB
testcase_02 AC 90 ms
107,392 KB
testcase_03 AC 93 ms
101,904 KB
testcase_04 AC 101 ms
102,064 KB
testcase_05 AC 69 ms
95,872 KB
testcase_06 AC 72 ms
95,744 KB
testcase_07 AC 70 ms
95,688 KB
testcase_08 AC 78 ms
97,664 KB
testcase_09 AC 71 ms
95,616 KB
testcase_10 AC 71 ms
95,616 KB
testcase_11 AC 73 ms
95,872 KB
testcase_12 AC 73 ms
96,000 KB
testcase_13 AC 79 ms
97,152 KB
testcase_14 AC 78 ms
97,152 KB
testcase_15 AC 79 ms
97,408 KB
testcase_16 AC 78 ms
97,152 KB
testcase_17 AC 79 ms
97,048 KB
testcase_18 AC 79 ms
97,188 KB
testcase_19 AC 75 ms
95,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
if 0 in A:
    print(-1)
elif max(A) >= 4:
    print(10 ** 9 + 7)
else:
    ans = 1
    fact = [1, 1, 2, 6, 24]
    for a in A:
        ans *= pow(a, fact[a])
        if ans >= 10 ** 9 + 7:
            break
    print((10 ** 9 + 7) % ans)
0