結果

問題 No.1237 EXP Multiple!
ユーザー komkompikomkompi
提出日時 2020-10-23 20:22:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 350 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,672 KB
最終ジャッジ日時 2024-07-21 10:23:04
合計ジャッジ時間 3,082 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 83 ms
26,856 KB
testcase_02 AC 112 ms
32,536 KB
testcase_03 AC 101 ms
32,496 KB
testcase_04 AC 106 ms
32,672 KB
testcase_05 AC 117 ms
14,728 KB
testcase_06 AC 68 ms
14,588 KB
testcase_07 AC 114 ms
14,600 KB
testcase_08 AC 107 ms
14,600 KB
testcase_09 AC 107 ms
14,604 KB
testcase_10 AC 111 ms
14,600 KB
testcase_11 AC 68 ms
14,604 KB
testcase_12 AC 100 ms
14,428 KB
testcase_13 AC 108 ms
14,600 KB
testcase_14 AC 107 ms
14,600 KB
testcase_15 AC 107 ms
14,604 KB
testcase_16 AC 107 ms
14,728 KB
testcase_17 AC 107 ms
14,472 KB
testcase_18 AC 106 ms
14,604 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
N=int(input())
A=list(map(int,input().split()))

ans=1
mod=(10**9+7)
for a in A:
    if a>=4:
        ans*=(mod+1)
    elif a==3:
        ans*=3**6
    elif a==2:
        ans*=2**2
    elif a==0:
        ans*=0
    
    if ans>mod:
        print(mod)
        exit()

if ans==0:
    print(-1)
else:
    print(mod%ans)
0