結果

問題 No.1237 EXP Multiple!
ユーザー hirakuhiraku
提出日時 2020-10-27 09:54:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 395 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,276 KB
最終ジャッジ日時 2024-07-21 21:52:11
合計ジャッジ時間 3,611 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 82 ms
26,356 KB
testcase_02 AC 101 ms
33,276 KB
testcase_03 AC 99 ms
32,800 KB
testcase_04 AC 107 ms
32,836 KB
testcase_05 WA -
testcase_06 AC 83 ms
14,900 KB
testcase_07 WA -
testcase_08 AC 138 ms
14,756 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 86 ms
14,876 KB
testcase_12 AC 126 ms
14,752 KB
testcase_13 AC 132 ms
14,756 KB
testcase_14 AC 128 ms
14,884 KB
testcase_15 AC 131 ms
14,884 KB
testcase_16 AC 131 ms
14,756 KB
testcase_17 AC 138 ms
14,756 KB
testcase_18 AC 132 ms
14,756 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

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(0)
  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