結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 151 ms
22,144 KB
testcase_02 AC 168 ms
25,472 KB
testcase_03 AC 170 ms
25,984 KB
testcase_04 AC 171 ms
26,112 KB
testcase_05 AC 223 ms
25,600 KB
testcase_06 AC 177 ms
25,600 KB
testcase_07 AC 193 ms
25,856 KB
testcase_08 AC 195 ms
25,600 KB
testcase_09 AC 203 ms
25,728 KB
testcase_10 AC 218 ms
25,856 KB
testcase_11 AC 214 ms
25,728 KB
testcase_12 AC 175 ms
25,600 KB
testcase_13 AC 197 ms
25,728 KB
testcase_14 AC 193 ms
25,600 KB
testcase_15 AC 192 ms
25,600 KB
testcase_16 AC 190 ms
25,600 KB
testcase_17 AC 227 ms
25,600 KB
testcase_18 AC 196 ms
25,600 KB
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 : Mod % ans
end
0