結果

問題 No.1237 EXP Multiple!
ユーザー timitimi
提出日時 2020-09-26 18:24:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 267 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,752 KB
最終ジャッジ日時 2024-06-29 13:00:02
合計ジャッジ時間 2,938 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 84 ms
26,252 KB
testcase_02 AC 105 ms
31,928 KB
testcase_03 AC 105 ms
32,752 KB
testcase_04 AC 110 ms
32,676 KB
testcase_05 AC 73 ms
14,744 KB
testcase_06 AC 73 ms
14,736 KB
testcase_07 AC 76 ms
14,740 KB
testcase_08 AC 117 ms
14,868 KB
testcase_09 AC 75 ms
14,740 KB
testcase_10 AC 74 ms
14,740 KB
testcase_11 AC 73 ms
14,736 KB
testcase_12 RE -
testcase_13 AC 115 ms
14,740 KB
testcase_14 AC 112 ms
14,736 KB
testcase_15 AC 116 ms
14,740 KB
testcase_16 AC 117 ms
14,756 KB
testcase_17 AC 114 ms
14,736 KB
testcase_18 AC 114 ms
14,736 KB
testcase_19 AC 75 ms
14,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
mod=10**9+7
if min(A)==0:
    print(-1)
    exit()
D=[1,1,4,729]
d=1
for i in A:
    if i>4:
        print(mod)
        exit()
    else:
        d*=D[i]
    if d>mod:
        print(mod)
        exit()
    
print(mod%d)
0