結果

問題 No.1237 EXP Multiple!
ユーザー NagisaNagisa
提出日時 2020-09-25 23:23:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,788 KB
最終ジャッジ日時 2024-06-28 07:27:05
合計ジャッジ時間 3,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 83 ms
26,144 KB
testcase_02 AC 101 ms
31,940 KB
testcase_03 AC 99 ms
32,788 KB
testcase_04 AC 105 ms
32,564 KB
testcase_05 AC 95 ms
14,260 KB
testcase_06 AC 69 ms
14,264 KB
testcase_07 AC 120 ms
14,264 KB
testcase_08 AC 153 ms
14,264 KB
testcase_09 AC 148 ms
14,132 KB
testcase_10 WA -
testcase_11 AC 69 ms
14,264 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 150 ms
14,264 KB
testcase_15 AC 145 ms
14,136 KB
testcase_16 AC 145 ms
14,136 KB
testcase_17 AC 145 ms
14,132 KB
testcase_18 AC 146 ms
14,136 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial
MOD = 10**9 + 7
N = int(input())
A = list(map(int,input().split()))

ans = 1
for e in A:
    if e > 10:
        print(MOD)
        exit(0)
    elif e != 0:
        ans *= pow(e,factorial(e),MOD)
    if ans > MOD:
        print(MOD)
        exit(0)

print(-1 if ans == 1 else MOD%ans)
0