結果

問題 No.396 クラス替え
ユーザー ryoo14ryoo14
提出日時 2016-12-01 14:37:07
言語 Ruby
(3.3.0)
結果
MLE  
実行時間 -
コード長 490 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 238,336 KB
最終ジャッジ日時 2024-05-05 16:39:59
合計ジャッジ時間 3,111 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
17,408 KB
testcase_01 AC 76 ms
12,032 KB
testcase_02 AC 78 ms
12,288 KB
testcase_03 MLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:21: warning: assigned but unused variable - students
Syntax OK

ソースコード

diff #

def class_div(a,n,m,f)
  if f then
    1.upto(n) do |i|
      a << i
    end
  else
    n.downto(1) do |i|
      a << i
    end
  end

  if a.size >= m then
    a
  elsif f then
    class_div(a,n,m,false)
  else
    class_div(a,n,m,true)
  end
end

students, classes = gets.split.map(&:to_i)
hanako, taro = gets.split.map(&:to_i)

max = hanako > taro ? hanako : taro

arr = []
arr = class_div(arr, classes, max, true)

if arr[hanako-1] == arr[taro-1] then
  puts "YES"
else
  puts "NO"
end
0