結果

問題 No.1149 色塗りゲーム
ユーザー simansiman
提出日時 2021-05-14 15:57:52
言語 Ruby
(3.3.0)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 29,152 KB
平均クエリ数 19.82
最終ジャッジ日時 2024-07-17 11:24:04
合計ジャッジ時間 11,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
28,640 KB
testcase_01 AC 145 ms
28,640 KB
testcase_02 AC 148 ms
29,024 KB
testcase_03 AC 145 ms
28,384 KB
testcase_04 AC 151 ms
29,024 KB
testcase_05 AC 144 ms
28,768 KB
testcase_06 AC 147 ms
28,640 KB
testcase_07 AC 149 ms
28,768 KB
testcase_08 AC 148 ms
29,024 KB
testcase_09 AC 148 ms
28,640 KB
testcase_10 AC 149 ms
28,640 KB
testcase_11 AC 149 ms
28,640 KB
testcase_12 AC 149 ms
28,768 KB
testcase_13 AC 150 ms
28,512 KB
testcase_14 AC 149 ms
28,896 KB
testcase_15 AC 147 ms
28,888 KB
testcase_16 AC 148 ms
28,640 KB
testcase_17 AC 150 ms
28,640 KB
testcase_18 AC 149 ms
28,640 KB
testcase_19 AC 150 ms
28,640 KB
testcase_20 AC 151 ms
28,768 KB
testcase_21 AC 153 ms
28,768 KB
testcase_22 AC 151 ms
28,640 KB
testcase_23 AC 151 ms
28,896 KB
testcase_24 AC 150 ms
28,640 KB
testcase_25 AC 151 ms
28,512 KB
testcase_26 AC 153 ms
29,152 KB
testcase_27 AC 152 ms
29,024 KB
testcase_28 AC 151 ms
28,640 KB
testcase_29 AC 150 ms
28,768 KB
testcase_30 AC 199 ms
29,024 KB
testcase_31 AC 190 ms
28,640 KB
testcase_32 AC 193 ms
28,920 KB
testcase_33 AC 198 ms
28,640 KB
testcase_34 AC 201 ms
28,896 KB
testcase_35 AC 195 ms
28,768 KB
testcase_36 AC 203 ms
28,896 KB
testcase_37 AC 208 ms
28,640 KB
testcase_38 AC 202 ms
28,768 KB
testcase_39 AC 210 ms
29,152 KB
testcase_40 AC 216 ms
28,640 KB
testcase_41 AC 213 ms
28,896 KB
testcase_42 AC 211 ms
29,016 KB
testcase_43 AC 211 ms
29,024 KB
testcase_44 AC 225 ms
28,768 KB
testcase_45 AC 220 ms
28,640 KB
testcase_46 AC 224 ms
28,896 KB
testcase_47 AC 232 ms
28,512 KB
testcase_48 AC 229 ms
28,896 KB
testcase_49 AC 234 ms
28,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i

turn = 0

loop {
  if turn == 0
    case N
    when 1
      STDOUT.puts "1 1"
    when 2
      STDOUT.puts "2 1"
    else
      if N.even?
        STDOUT.puts "2 #{N / 2}"
      else
        STDOUT.puts "1 #{N / 2 + 1}"
      end
    end
  else
    k, x = gets.split.map(&:to_i)
    i = N - x + 1 - (k - 1)
    STDOUT.puts "%d %d" % [k, i]
  end

  STDOUT.flush
  t = gets.to_i
  break if t == 0 || t == 1
  turn += 1
}
0