結果

問題 No.1237 EXP Multiple!
ユーザー H3PO4H3PO4
提出日時 2020-09-25 22:36:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,744 KB
最終ジャッジ日時 2024-06-28 07:01:20
合計ジャッジ時間 3,343 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 83 ms
26,116 KB
testcase_02 AC 107 ms
31,920 KB
testcase_03 AC 102 ms
32,744 KB
testcase_04 AC 108 ms
32,596 KB
testcase_05 AC 71 ms
14,600 KB
testcase_06 AC 73 ms
14,596 KB
testcase_07 AC 70 ms
14,600 KB
testcase_08 AC 170 ms
14,728 KB
testcase_09 AC 70 ms
14,724 KB
testcase_10 AC 69 ms
14,728 KB
testcase_11 AC 71 ms
14,724 KB
testcase_12 AC 153 ms
14,680 KB
testcase_13 AC 162 ms
14,600 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 169 ms
14,724 KB
testcase_17 AC 166 ms
14,732 KB
testcase_18 AC 165 ms
14,728 KB
testcase_19 AC 73 ms
14,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = tuple(map(int, input().split()))
DIV = 10 ** 9 + 7

if 0 in A:
    print(-1)
    exit()

ans = 1
for a in A:
    if a >= 4:
        # 10e9+7を答で割る?
        print(DIV)
        exit()
    for i in range(1, a + 1):
        ans *= a ** i
    if ans > DIV:
        print(DIV)
        exit()
print(DIV % ans)
0