結果
問題 | No.1237 EXP Multiple! |
ユーザー | r_ishida |
提出日時 | 2021-01-04 08:33:21 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 125 ms / 2,000 ms |
コード長 | 689 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 33,344 KB |
最終ジャッジ日時 | 2024-10-14 08:13:39 |
合計ジャッジ時間 | 3,255 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,880 KB |
testcase_01 | AC | 91 ms
26,448 KB |
testcase_02 | AC | 113 ms
31,992 KB |
testcase_03 | AC | 112 ms
32,824 KB |
testcase_04 | AC | 113 ms
33,344 KB |
testcase_05 | AC | 75 ms
14,812 KB |
testcase_06 | AC | 79 ms
14,804 KB |
testcase_07 | AC | 77 ms
14,808 KB |
testcase_08 | AC | 83 ms
14,932 KB |
testcase_09 | AC | 76 ms
14,932 KB |
testcase_10 | AC | 75 ms
14,808 KB |
testcase_11 | AC | 82 ms
14,804 KB |
testcase_12 | AC | 79 ms
14,804 KB |
testcase_13 | AC | 125 ms
14,932 KB |
testcase_14 | AC | 123 ms
14,808 KB |
testcase_15 | AC | 122 ms
14,932 KB |
testcase_16 | AC | 124 ms
14,808 KB |
testcase_17 | AC | 123 ms
14,804 KB |
testcase_18 | AC | 123 ms
14,804 KB |
testcase_19 | AC | 75 ms
14,808 KB |
ソースコード
import sys import itertools import math def S(): return sys.stdin.readline().rstrip() def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LS(): return list(sys.stdin.readline().rstrip().split()) n = I() a = LI() if min(a) == 0: print(-1) elif max(a) >= 4: print(10**9+7) elif a.count(3) >= 4: print(10**9+7) elif a.count(2) >= 16: print(10**9+7) else: ans = 1 for i in range(n): if a[i] == 2: ans *= 2**2 elif a[i] == 3: ans *= 3**6 print((10**9+7)%ans)