結果

問題 No.1237 EXP Multiple!
ユーザー mesame3993mesame3993
提出日時 2021-11-18 19:50:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 104,192 KB
最終ジャッジ日時 2024-06-08 05:46:00
合計ジャッジ時間 2,813 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 70 ms
91,136 KB
testcase_02 AC 78 ms
104,192 KB
testcase_03 AC 87 ms
99,968 KB
testcase_04 AC 86 ms
100,224 KB
testcase_05 AC 69 ms
95,872 KB
testcase_06 AC 67 ms
95,232 KB
testcase_07 AC 67 ms
95,232 KB
testcase_08 AC 67 ms
96,232 KB
testcase_09 AC 65 ms
95,616 KB
testcase_10 AC 66 ms
95,328 KB
testcase_11 AC 68 ms
95,744 KB
testcase_12 AC 68 ms
96,256 KB
testcase_13 AC 69 ms
96,128 KB
testcase_14 AC 69 ms
96,256 KB
testcase_15 AC 71 ms
96,256 KB
testcase_16 AC 72 ms
95,744 KB
testcase_17 AC 69 ms
96,000 KB
testcase_18 AC 70 ms
96,256 KB
testcase_19 AC 70 ms
95,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from sys import stdin
  import math
  readline=stdin.readline
  n = int(readline())
  A = list(map(int, readline().split()))
  mod = 10**9 + 7
  ans = 1
  if 0 in A:
    print(-1)
    exit()
  for a in A:
    if a >= 4:
      print(mod)
      exit()
    elif a == 1:
      continue
    elif a == 2:
      ans *= 4
    elif a == 3:
      ans *= 729
    if ans > mod:
      print(mod)
      exit()
  print(mod % ans)
main()
0