結果

問題 No.1237 EXP Multiple!
ユーザー hirakuhiraku
提出日時 2020-10-27 09:55:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,292 KB
最終ジャッジ日時 2024-07-21 21:52:14
合計ジャッジ時間 2,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 83 ms
26,280 KB
testcase_02 AC 106 ms
32,208 KB
testcase_03 AC 110 ms
32,908 KB
testcase_04 AC 102 ms
33,292 KB
testcase_05 AC 67 ms
14,752 KB
testcase_06 AC 83 ms
14,752 KB
testcase_07 AC 67 ms
14,752 KB
testcase_08 AC 140 ms
14,884 KB
testcase_09 AC 67 ms
14,884 KB
testcase_10 AC 67 ms
14,880 KB
testcase_11 AC 85 ms
14,880 KB
testcase_12 AC 122 ms
14,884 KB
testcase_13 AC 130 ms
14,756 KB
testcase_14 AC 127 ms
14,752 KB
testcase_15 AC 133 ms
15,008 KB
testcase_16 AC 130 ms
14,884 KB
testcase_17 AC 126 ms
14,812 KB
testcase_18 AC 131 ms
14,756 KB
testcase_19 AC 71 ms
14,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.1237 EXP Multiple!
# https://yukicoder.me/problems/no/1237

from math import factorial

def f(x):
  return x ** factorial(x)

n = int(input())
A = list(map(int, input().split()))

MOD = 10 ** 9 + 7

if any(a == 0 for a in A):
  print(-1)
  exit()

if any(a > 9 for a in A):
  print(MOD)
  exit()

ans = 1
for a in A:
  if ans >= MOD:
    print(MOD)
    exit()
  ans *= f(a)

print(MOD % ans)
0