結果

問題 No.1237 EXP Multiple!
ユーザー tanon710tanon710
提出日時 2020-09-25 23:46:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,728 KB
最終ジャッジ日時 2024-06-28 08:40:51
合計ジャッジ時間 2,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 71 ms
92,672 KB
testcase_02 AC 92 ms
105,728 KB
testcase_03 AC 98 ms
101,824 KB
testcase_04 AC 99 ms
102,016 KB
testcase_05 AC 73 ms
95,616 KB
testcase_06 AC 73 ms
95,872 KB
testcase_07 AC 73 ms
95,232 KB
testcase_08 AC 74 ms
96,896 KB
testcase_09 AC 71 ms
95,616 KB
testcase_10 AC 71 ms
95,744 KB
testcase_11 AC 72 ms
95,872 KB
testcase_12 AC 74 ms
95,744 KB
testcase_13 AC 76 ms
96,512 KB
testcase_14 AC 74 ms
96,512 KB
testcase_15 AC 74 ms
96,640 KB
testcase_16 AC 75 ms
96,768 KB
testcase_17 AC 82 ms
96,512 KB
testcase_18 AC 76 ms
96,384 KB
testcase_19 AC 72 ms
95,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7

n=int(input())
arr=list(map(int,input().split()))
if arr.count(0)!=0:
    print(-1)
elif arr.count(1)+arr.count(2)+arr.count(3)!=n:
    print(mod)
else:
    ans=1
    for val in arr:
        if val==1:
            ans*=1
        elif val==2:
            ans*=4
        elif val==3:
            ans*=729
        if ans>mod:
            print(mod)
            break
    else:
        print(mod%ans)
0