結果

問題 No.514 宝探し3
ユーザー cympfhcympfh
提出日時 2017-05-05 22:55:17
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 29,272 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-16 13:04:15
合計ジャッジ時間 3,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 98 ms
29,136 KB
testcase_09 AC 101 ms
28,888 KB
testcase_10 AC 100 ms
28,632 KB
testcase_11 AC 96 ms
29,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M = 1000000000

def get(x, y)

  x = [M, [0, x].max].min
  y = [M, [0, y].max].min

  puts "#{x} #{y}"
  STDOUT.flush
  d = gets.to_i
  return d
end

d0 = get(0, 0)
d1 = get(M, 0)

x = (M + d0 - d1) / 2
y = (M + 3 * d0 - d1) / 2
get(x, y)
0