結果

問題 No.1237 EXP Multiple!
ユーザー ygd.ygd.
提出日時 2020-09-25 23:26:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,745 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,696 KB
最終ジャッジ日時 2024-06-28 08:39:22
合計ジャッジ時間 15,911 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,132 KB
testcase_01 AC 74 ms
92,544 KB
testcase_02 AC 93 ms
107,696 KB
testcase_03 AC 100 ms
101,960 KB
testcase_04 AC 101 ms
102,064 KB
testcase_05 AC 73 ms
96,096 KB
testcase_06 AC 76 ms
95,872 KB
testcase_07 AC 73 ms
95,948 KB
testcase_08 AC 1,737 ms
103,172 KB
testcase_09 AC 72 ms
95,688 KB
testcase_10 AC 74 ms
95,616 KB
testcase_11 AC 76 ms
97,080 KB
testcase_12 AC 1,500 ms
103,084 KB
testcase_13 AC 1,730 ms
103,364 KB
testcase_14 AC 1,737 ms
103,448 KB
testcase_15 AC 1,734 ms
103,308 KB
testcase_16 AC 1,745 ms
103,176 KB
testcase_17 AC 1,736 ms
103,388 KB
testcase_18 AC 1,742 ms
103,356 KB
testcase_19 AC 74 ms
95,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input()); MOD = pow(10,9)+7
A = list(map(int,input().split()))
if 0 in A:
  print(-1);exit()
if min(A) >= 4:
  print(MOD);exit()
ans = 1
for x in A:
  kata = math.factorial(x)
  temp = pow(x,kata)
  ans = ans*temp
  if ans >= MOD:
    print(MOD);exit()
print(MOD%ans)
0