結果

問題 No.1237 EXP Multiple!
ユーザー ibyiby
提出日時 2020-11-27 02:13:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,680 KB
最終ジャッジ日時 2024-07-23 21:16:17
合計ジャッジ時間 4,308 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 89 ms
26,256 KB
testcase_02 AC 108 ms
31,924 KB
testcase_03 AC 107 ms
32,656 KB
testcase_04 AC 113 ms
32,680 KB
testcase_05 AC 68 ms
14,004 KB
testcase_06 AC 77 ms
14,256 KB
testcase_07 AC 70 ms
14,132 KB
testcase_08 AC 183 ms
14,132 KB
testcase_09 AC 69 ms
14,260 KB
testcase_10 AC 69 ms
14,008 KB
testcase_11 AC 77 ms
14,004 KB
testcase_12 WA -
testcase_13 AC 182 ms
14,132 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 176 ms
14,128 KB
testcase_17 AC 186 ms
14,000 KB
testcase_18 AC 181 ms
14,004 KB
testcase_19 AC 77 ms
14,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9 + 7
n = int(input())
a = list(map(int, input().split()))
if any(v == 0 for v in a):
    print(-1)
    exit()

ans = 1
for v in a:
    for j in range(1, v + 1):
        ans = ans*(pow(v, j))
        if ans > MOD:
            print(MOD)
            exit()
else:
    print(MOD % ans)
0