結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 147 ms
22,272 KB
testcase_02 AC 183 ms
25,472 KB
testcase_03 AC 169 ms
25,856 KB
testcase_04 AC 166 ms
26,112 KB
testcase_05 AC 189 ms
25,600 KB
testcase_06 AC 173 ms
25,600 KB
testcase_07 AC 189 ms
25,728 KB
testcase_08 AC 191 ms
25,600 KB
testcase_09 AC 187 ms
25,600 KB
testcase_10 AC 193 ms
25,728 KB
testcase_11 AC 172 ms
25,728 KB
testcase_12 AC 170 ms
25,728 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