結果

問題 No.471 直列回転機
ユーザー tubo28tubo28
提出日時 2016-12-12 14:07:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 492 ms / 3,141 ms
コード長 263 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 35,792 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-06-11 10:15:01
合計ジャッジ時間 19,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
28,760 KB
testcase_01 AC 109 ms
29,024 KB
testcase_02 AC 111 ms
28,896 KB
testcase_03 AC 111 ms
28,896 KB
testcase_04 AC 115 ms
28,896 KB
testcase_05 AC 119 ms
28,512 KB
testcase_06 AC 112 ms
29,024 KB
testcase_07 AC 118 ms
28,512 KB
testcase_08 AC 158 ms
30,048 KB
testcase_09 AC 165 ms
30,176 KB
testcase_10 AC 145 ms
29,664 KB
testcase_11 AC 262 ms
30,816 KB
testcase_12 AC 417 ms
33,496 KB
testcase_13 AC 406 ms
33,752 KB
testcase_14 AC 442 ms
33,880 KB
testcase_15 AC 492 ms
35,040 KB
testcase_16 AC 121 ms
28,928 KB
testcase_17 AC 115 ms
28,512 KB
testcase_18 AC 109 ms
28,536 KB
testcase_19 AC 114 ms
29,024 KB
testcase_20 AC 479 ms
35,152 KB
testcase_21 AC 197 ms
29,776 KB
testcase_22 AC 422 ms
33,616 KB
testcase_23 AC 406 ms
34,384 KB
testcase_24 AC 279 ms
31,952 KB
testcase_25 AC 181 ms
29,008 KB
testcase_26 AC 459 ms
35,792 KB
testcase_27 AC 277 ms
31,312 KB
testcase_28 AC 300 ms
32,464 KB
testcase_29 AC 342 ms
31,952 KB
testcase_30 AC 216 ms
30,160 KB
testcase_31 AC 448 ms
34,384 KB
testcase_32 AC 398 ms
33,744 KB
testcase_33 AC 322 ms
33,488 KB
testcase_34 AC 431 ms
35,280 KB
testcase_35 AC 198 ms
29,904 KB
testcase_36 AC 258 ms
31,440 KB
testcase_37 AC 150 ms
29,520 KB
testcase_38 AC 177 ms
29,264 KB
testcase_39 AC 230 ms
30,672 KB
testcase_40 AC 343 ms
32,464 KB
testcase_41 AC 439 ms
35,408 KB
testcase_42 AC 321 ms
32,336 KB
testcase_43 AC 413 ms
35,664 KB
testcase_44 AC 155 ms
28,752 KB
testcase_45 AC 323 ms
32,464 KB
testcase_46 AC 356 ms
33,480 KB
testcase_47 AC 430 ms
35,536 KB
testcase_48 AC 373 ms
33,232 KB
testcase_49 AC 358 ms
33,360 KB
testcase_50 AC 413 ms
34,000 KB
testcase_51 AC 243 ms
31,184 KB
testcase_52 AC 119 ms
28,872 KB
testcase_53 AC 120 ms
28,360 KB
testcase_54 AC 120 ms
29,128 KB
testcase_55 AC 207 ms
30,192 KB
testcase_56 AC 190 ms
30,280 KB
testcase_57 AC 168 ms
29,512 KB
testcase_58 AC 144 ms
29,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def get
  x, y = gets.split.map(&:to_i);
  Complex(x, y)
end

m = gets.to_i
ps = m.times.map { get }

puts "? 0 0"
$>.flush
org = get

puts "? 1 0"
$>.flush
r = get - org

puts "!"
ps.map { |c| c*r + org }.each { |c|
  x, y = c.rect
  puts "#{x} #{y}"
}
$>.flush
0