結果
問題 | No.1237 EXP Multiple! |
ユーザー | itm_tech |
提出日時 | 2020-09-25 23:41:14 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 262 bytes |
コンパイル時間 | 130 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 33,404 KB |
最終ジャッジ日時 | 2024-06-28 08:22:35 |
合計ジャッジ時間 | 3,563 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 146 ms
14,616 KB |
testcase_14 | AC | 144 ms
14,612 KB |
testcase_15 | AC | 153 ms
14,860 KB |
testcase_16 | AC | 145 ms
14,608 KB |
testcase_17 | AC | 145 ms
14,740 KB |
testcase_18 | AC | 144 ms
14,612 KB |
testcase_19 | AC | 87 ms
14,740 KB |
ソースコード
from math import factorial n = int(input()) a = [int(i) for i in input().split()] if max(a) >= 4: print(-1) exit() ans = 1 mod = 10 ** 9 + 7 for i in a: ans *= pow(i, factorial(i)) if ans >= mod: print(-1) exit() print(mod % ans)