結果

問題 No.1237 EXP Multiple!
ユーザー rlangevinrlangevin
提出日時 2023-01-02 14:37:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-11-27 00:47:45
合計ジャッジ時間 2,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 80 ms
92,672 KB
testcase_02 AC 99 ms
107,136 KB
testcase_03 AC 101 ms
101,632 KB
testcase_04 AC 103 ms
102,144 KB
testcase_05 AC 79 ms
95,616 KB
testcase_06 AC 80 ms
95,616 KB
testcase_07 AC 80 ms
95,616 KB
testcase_08 AC 87 ms
97,152 KB
testcase_09 AC 81 ms
95,488 KB
testcase_10 AC 80 ms
95,488 KB
testcase_11 AC 78 ms
95,744 KB
testcase_12 AC 78 ms
95,872 KB
testcase_13 AC 79 ms
97,024 KB
testcase_14 AC 86 ms
97,024 KB
testcase_15 AC 81 ms
97,152 KB
testcase_16 AC 79 ms
97,024 KB
testcase_17 AC 79 ms
97,152 KB
testcase_18 AC 80 ms
96,896 KB
testcase_19 AC 77 ms
95,744 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