結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 73 ms
13,892 KB
testcase_06 WA -
testcase_07 AC 75 ms
14,016 KB
testcase_08 WA -
testcase_09 AC 74 ms
14,016 KB
testcase_10 AC 74 ms
14,016 KB
testcase_11 WA -
testcase_12 RE -
testcase_13 AC 112 ms
14,016 KB
testcase_14 AC 114 ms
14,020 KB
testcase_15 AC 116 ms
13,892 KB
testcase_16 AC 115 ms
14,144 KB
testcase_17 AC 112 ms
14,020 KB
testcase_18 AC 116 ms
14,016 KB
testcase_19 AC 75 ms
14,020 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(0)
        exit()
    else:
        d*=D[i]
    if d>mod:
        print(0)
        exit()
    
print(mod%d)
0