結果

問題 No.1237 EXP Multiple!
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-09-25 23:38:20
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 314 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 104,576 KB
最終ジャッジ日時 2024-06-28 08:40:10
合計ジャッジ時間 22,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 74 ms
91,136 KB
testcase_02 AC 89 ms
104,576 KB
testcase_03 AC 95 ms
100,096 KB
testcase_04 AC 97 ms
100,352 KB
testcase_05 AC 1,743 ms
102,912 KB
testcase_06 AC 75 ms
95,488 KB
testcase_07 AC 1,761 ms
103,168 KB
testcase_08 AC 1,738 ms
102,880 KB
testcase_09 AC 1,729 ms
103,168 KB
testcase_10 AC 1,764 ms
102,912 KB
testcase_11 AC 76 ms
96,384 KB
testcase_12 AC 1,499 ms
102,912 KB
testcase_13 AC 1,744 ms
102,784 KB
testcase_14 AC 1,747 ms
103,040 KB
testcase_15 AC 1,759 ms
102,784 KB
testcase_16 AC 1,751 ms
103,168 KB
testcase_17 AC 1,728 ms
102,784 KB
testcase_18 AC 1,735 ms
102,784 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
import math
import sys
mod = 10**9+7

N = int(input())

A = list(map(int,stdin.readline().split()))

now = 1

for i in A:

    if i > 10 or now > 10**9+7:
        print (10**9+7)
        sys.exit()

    now *= i ** math.factorial(i)


if now == 0:
    print (-1)
else:
    print (mod % now)
0