結果

問題 No.1237 EXP Multiple!
ユーザー suzuishisuzuishi
提出日時 2024-07-13 23:15:02
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-07-13 23:15:08
合計ジャッジ時間 6,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 147 ms
22,144 KB
testcase_02 AC 167 ms
25,600 KB
testcase_03 AC 166 ms
25,984 KB
testcase_04 AC 171 ms
26,240 KB
testcase_05 AC 193 ms
25,856 KB
testcase_06 AC 202 ms
25,600 KB
testcase_07 AC 189 ms
25,728 KB
testcase_08 AC 190 ms
25,728 KB
testcase_09 AC 188 ms
25,856 KB
testcase_10 AC 192 ms
25,728 KB
testcase_11 AC 174 ms
25,600 KB
testcase_12 AC 178 ms
25,600 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

Mod = 10 ** 9 + 7
n = gets.to_i
a = gets.split.map &:to_i
if a.any? {|i| i >= 4} then
  puts Mod
else
  ans = 1
  f = [0, 1, 4, 3 ** 6]
  a.each do |i|
    ans *= f[i]
    if ans > Mod then
      puts Mod
      exit
    end
  end
  puts ans == 0 ? -1 : ans
end
0