結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 82 ms
26,132 KB
testcase_02 AC 103 ms
31,940 KB
testcase_03 AC 103 ms
32,756 KB
testcase_04 AC 106 ms
32,684 KB
testcase_05 AC 72 ms
13,936 KB
testcase_06 AC 72 ms
14,024 KB
testcase_07 AC 73 ms
13,916 KB
testcase_08 AC 120 ms
14,028 KB
testcase_09 AC 74 ms
13,892 KB
testcase_10 AC 73 ms
13,896 KB
testcase_11 AC 73 ms
13,928 KB
testcase_12 RE -
testcase_13 WA -
testcase_14 AC 117 ms
13,892 KB
testcase_15 AC 118 ms
14,020 KB
testcase_16 AC 115 ms
14,024 KB
testcase_17 AC 112 ms
14,012 KB
testcase_18 AC 116 ms
13,896 KB
testcase_19 AC 72 ms
13,912 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()
if d==1:
    print(mod)
    exit()
print(mod%d)
0