結果

問題 No.1237 EXP Multiple!
ユーザー 👑 KazunKazun
提出日時 2020-09-26 01:04:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 107,356 KB
最終ジャッジ日時 2024-06-28 09:03:18
合計ジャッジ時間 2,747 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,284 KB
testcase_01 AC 74 ms
92,988 KB
testcase_02 AC 90 ms
107,356 KB
testcase_03 AC 97 ms
101,956 KB
testcase_04 AC 98 ms
102,196 KB
testcase_05 AC 75 ms
97,768 KB
testcase_06 AC 73 ms
97,640 KB
testcase_07 AC 76 ms
97,168 KB
testcase_08 AC 75 ms
96,672 KB
testcase_09 AC 75 ms
98,316 KB
testcase_10 AC 75 ms
97,816 KB
testcase_11 AC 74 ms
96,972 KB
testcase_12 AC 73 ms
97,592 KB
testcase_13 AC 77 ms
97,220 KB
testcase_14 AC 76 ms
96,824 KB
testcase_15 AC 76 ms
97,204 KB
testcase_16 AC 76 ms
98,172 KB
testcase_17 AC 76 ms
97,764 KB
testcase_18 AC 75 ms
97,360 KB
testcase_19 AC 75 ms
96,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))

if max(A)>=4:
    print(10**9+7)
    exit()

T=[0,1,4,729]
X=1
for a in A:
    X*=T[a]
    if X>=10**9+8:
        break

if 0 in A:
    print(-1)
else:
    print((10**9+7)%X)
0