結果
問題 | No.1237 EXP Multiple! |
ユーザー | tanon710 |
提出日時 | 2020-09-25 23:44:26 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 379 bytes |
コンパイル時間 | 86 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 32,556 KB |
最終ジャッジ日時 | 2024-06-28 08:23:37 |
合計ジャッジ時間 | 2,926 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 91 ms
26,264 KB |
testcase_02 | AC | 114 ms
31,680 KB |
testcase_03 | AC | 115 ms
32,496 KB |
testcase_04 | AC | 118 ms
32,556 KB |
testcase_05 | AC | 69 ms
13,888 KB |
testcase_06 | WA | - |
testcase_07 | AC | 74 ms
13,892 KB |
testcase_08 | WA | - |
testcase_09 | AC | 74 ms
13,892 KB |
testcase_10 | AC | 73 ms
13,888 KB |
testcase_11 | WA | - |
testcase_12 | AC | 80 ms
13,852 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 74 ms
13,892 KB |
ソースコード
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(10**9+7) else: mod=10**9+7 ans=1 for val in arr: if val==1: ans*=1 elif val==2: ans*=4 ans%=mod elif val==3: ans*=729 ans%=mod print(ans)