結果

問題 No.1237 EXP Multiple!
ユーザー pluto77pluto77
提出日時 2020-10-04 09:27:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,744 KB
最終ジャッジ日時 2024-07-19 05:18:58
合計ジャッジ時間 2,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 76 ms
25,992 KB
testcase_02 AC 95 ms
31,908 KB
testcase_03 AC 99 ms
32,744 KB
testcase_04 AC 96 ms
32,544 KB
testcase_05 AC 65 ms
14,476 KB
testcase_06 AC 68 ms
14,600 KB
testcase_07 AC 64 ms
14,732 KB
testcase_08 AC 106 ms
14,476 KB
testcase_09 AC 64 ms
14,604 KB
testcase_10 AC 62 ms
14,476 KB
testcase_11 AC 67 ms
14,600 KB
testcase_12 AC 67 ms
14,600 KB
testcase_13 AC 96 ms
14,604 KB
testcase_14 AC 107 ms
14,476 KB
testcase_15 AC 111 ms
14,600 KB
testcase_16 AC 95 ms
14,472 KB
testcase_17 AC 105 ms
14,472 KB
testcase_18 AC 95 ms
14,656 KB
testcase_19 AC 63 ms
14,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1237
mod=1000000007
n=int(input())
a=list(map(int, input().split()))

if min(a)==0:
 print(-1)
 exit()
if max(a) >= 4:
 print(mod)
 exit()
res = 1
p=[1,1,4,729]
for i in a:
 res*=p[i]
 if res>mod:
  print(mod)
  exit()
print(mod%res)
0