結果

問題 No.1237 EXP Multiple!
ユーザー shotoyooshotoyoo
提出日時 2020-09-25 22:21:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,728 KB
最終ジャッジ日時 2024-06-28 08:35:11
合計ジャッジ時間 2,736 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 80 ms
92,288 KB
testcase_02 AC 95 ms
105,728 KB
testcase_03 AC 102 ms
101,888 KB
testcase_04 AC 102 ms
102,272 KB
testcase_05 AC 79 ms
95,488 KB
testcase_06 AC 80 ms
95,488 KB
testcase_07 AC 79 ms
95,232 KB
testcase_08 AC 83 ms
96,640 KB
testcase_09 AC 78 ms
94,976 KB
testcase_10 AC 78 ms
95,232 KB
testcase_11 AC 80 ms
95,488 KB
testcase_12 AC 80 ms
96,128 KB
testcase_13 AC 80 ms
96,256 KB
testcase_14 AC 80 ms
96,128 KB
testcase_15 AC 82 ms
95,872 KB
testcase_16 AC 81 ms
96,256 KB
testcase_17 AC 81 ms
96,128 KB
testcase_18 AC 80 ms
96,000 KB
testcase_19 AC 79 ms
95,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


n = int(input())
a = list(map(int, input().split()))
M = 10**9+7
if 0 in a:
    ans = -1
else:
    v = 1
    for k in a:
        if k==1:
            pass
        elif k>=4:
            ans = M
            break
        else:
            d = [1,1,2,6]
            v *= pow(k, d[k])
            if v>M:
                ans = M
                break
    else:
        ans = M%v
print(ans)
0