結果

問題 No.471 直列回転機
ユーザー koba-e964koba-e964
提出日時 2016-12-21 14:12:19
言語 Ruby
(3.3.0)
結果
AC  
実行時間 463 ms / 3,141 ms
コード長 421 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 30,160 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:28:58
合計ジャッジ時間 19,828 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
28,888 KB
testcase_01 AC 125 ms
28,640 KB
testcase_02 AC 132 ms
28,896 KB
testcase_03 AC 127 ms
28,896 KB
testcase_04 AC 124 ms
28,896 KB
testcase_05 AC 134 ms
28,768 KB
testcase_06 AC 129 ms
28,768 KB
testcase_07 AC 128 ms
29,024 KB
testcase_08 AC 170 ms
28,896 KB
testcase_09 AC 174 ms
29,408 KB
testcase_10 AC 150 ms
28,640 KB
testcase_11 AC 258 ms
29,024 KB
testcase_12 AC 388 ms
29,400 KB
testcase_13 AC 384 ms
29,016 KB
testcase_14 AC 413 ms
29,144 KB
testcase_15 AC 463 ms
29,536 KB
testcase_16 AC 127 ms
29,144 KB
testcase_17 AC 120 ms
28,640 KB
testcase_18 AC 119 ms
28,896 KB
testcase_19 AC 121 ms
29,280 KB
testcase_20 AC 421 ms
29,648 KB
testcase_21 AC 205 ms
29,008 KB
testcase_22 AC 387 ms
29,392 KB
testcase_23 AC 364 ms
29,520 KB
testcase_24 AC 273 ms
29,136 KB
testcase_25 AC 183 ms
29,008 KB
testcase_26 AC 410 ms
29,264 KB
testcase_27 AC 271 ms
29,520 KB
testcase_28 AC 296 ms
29,008 KB
testcase_29 AC 332 ms
29,264 KB
testcase_30 AC 221 ms
29,008 KB
testcase_31 AC 425 ms
30,160 KB
testcase_32 AC 379 ms
29,136 KB
testcase_33 AC 311 ms
28,880 KB
testcase_34 AC 415 ms
29,520 KB
testcase_35 AC 202 ms
29,136 KB
testcase_36 AC 251 ms
28,880 KB
testcase_37 AC 163 ms
28,880 KB
testcase_38 AC 190 ms
29,264 KB
testcase_39 AC 238 ms
28,880 KB
testcase_40 AC 340 ms
29,264 KB
testcase_41 AC 429 ms
29,776 KB
testcase_42 AC 317 ms
29,520 KB
testcase_43 AC 400 ms
29,520 KB
testcase_44 AC 175 ms
29,000 KB
testcase_45 AC 310 ms
29,392 KB
testcase_46 AC 342 ms
29,776 KB
testcase_47 AC 404 ms
29,776 KB
testcase_48 AC 363 ms
29,520 KB
testcase_49 AC 350 ms
29,520 KB
testcase_50 AC 396 ms
29,648 KB
testcase_51 AC 243 ms
29,008 KB
testcase_52 AC 132 ms
29,000 KB
testcase_53 AC 129 ms
28,616 KB
testcase_54 AC 129 ms
28,616 KB
testcase_55 AC 216 ms
29,256 KB
testcase_56 AC 207 ms
29,000 KB
testcase_57 AC 185 ms
28,744 KB
testcase_58 AC 159 ms
29,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

m=gets.to_i
x=Array.new(m)
y=Array.new(m)
(0 ... m).each {|i|
  x[i], y[i] = gets.split.map &:to_i
}
puts "? 0 0"
STDOUT.flush
ox, oy = gets.split.map &:to_i
puts "? 1 0"
STDOUT.flush
kx, ky = gets.split.map &:to_i
kx -= ox
ky -= oy
puts "? 0 1"
STDOUT.flush
lx, ly = gets.split.map &:to_i
lx -= ox
ly -= oy

puts "!"
(0 ... m).each {|i|
  print ox + kx * x[i] + lx * y[i]
  print " "
  puts oy + ky * x[i] + ly * y[i]
}
0