結果
| 問題 |
No.1237 EXP Multiple!
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-06-07 13:28:18 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 307 bytes |
| コンパイル時間 | 258 ms |
| コンパイル使用メモリ | 82,048 KB |
| 実行使用メモリ | 105,856 KB |
| 最終ジャッジ日時 | 2024-12-25 17:29:48 |
| 合計ジャッジ時間 | 2,909 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 18 WA * 1 |
ソースコード
N = int(input())
A = list(map(int, input().split()))
M = 10**9 + 7
f = lambda x: 1 if x == 1 else x * f(x - 1)
ans = 1
for a in A:
if a == 0:
print(-1)
exit()
if a > 3:
print(M)
exit()
ans *= a**f(a)
if ans > M:
print(M)
exit()
print(M % ans)