結果

問題 No.1237 EXP Multiple!
ユーザー ayaoniayaoni
提出日時 2020-10-17 09:49:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 992 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 107,376 KB
最終ジャッジ日時 2024-07-21 01:53:23
合計ジャッジ時間 3,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 76 ms
93,312 KB
testcase_02 AC 89 ms
107,376 KB
testcase_03 AC 94 ms
102,016 KB
testcase_04 AC 97 ms
101,848 KB
testcase_05 AC 71 ms
96,384 KB
testcase_06 AC 75 ms
96,000 KB
testcase_07 AC 73 ms
95,616 KB
testcase_08 AC 81 ms
97,276 KB
testcase_09 AC 81 ms
96,000 KB
testcase_10 AC 79 ms
95,616 KB
testcase_11 AC 78 ms
95,872 KB
testcase_12 AC 78 ms
96,204 KB
testcase_13 AC 80 ms
97,024 KB
testcase_14 AC 80 ms
96,640 KB
testcase_15 AC 76 ms
96,640 KB
testcase_16 AC 90 ms
97,152 KB
testcase_17 AC 75 ms
96,640 KB
testcase_18 AC 75 ms
97,152 KB
testcase_19 AC 74 ms
96,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))  #空白あり


N = I()
A = LI()
m = 10**9+7

if min(A) == 0:
    print(-1)
    exit()

if max(A) >= 4:
    print(m)
else:
    x = 1
    for a in A:
        if a == 2:
            x *= 4
        if a == 3:
            x *= 729
        if x > m:
            print(m)
            break
    else:
        print(m % x)
0