結果

問題 No.149 碁石の移動
ユーザー simansiman
提出日時 2015-03-30 03:03:51
言語 Ruby
(3.3.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-06-06 11:42:58
合計ジャッジ時間 1,911 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

class Yukicoder
  def initialize
    aw, ab = gets.chomp.split(' ').map(&:to_i)
    bw, bb = gets.chomp.split(' ').map(&:to_i)
    c, d   = gets.chomp.split(' ').map(&:to_i)

    mw1 = [aw, [0, (c - ab)].max].min

    aw -= mw1
    bw += mw1

    mw2 = [bw, d].min

    aw += mw2
    bw -= mw2

    puts aw
  end
end

Yukicoder.new
0