結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
28,504 KB
testcase_01 AC 102 ms
28,768 KB
testcase_02 AC 102 ms
29,024 KB
testcase_03 AC 95 ms
28,888 KB
testcase_04 AC 93 ms
29,016 KB
testcase_05 AC 104 ms
28,768 KB
testcase_06 AC 104 ms
28,640 KB
testcase_07 AC 98 ms
28,768 KB
testcase_08 AC 136 ms
30,176 KB
testcase_09 AC 148 ms
29,920 KB
testcase_10 AC 126 ms
29,152 KB
testcase_11 AC 231 ms
31,328 KB
testcase_12 AC 354 ms
34,008 KB
testcase_13 AC 357 ms
33,624 KB
testcase_14 AC 379 ms
34,776 KB
testcase_15 AC 422 ms
35,168 KB
testcase_16 AC 98 ms
28,888 KB
testcase_17 AC 96 ms
28,896 KB
testcase_18 AC 104 ms
29,152 KB
testcase_19 AC 99 ms
28,896 KB
testcase_20 AC 390 ms
35,408 KB
testcase_21 AC 168 ms
30,152 KB
testcase_22 AC 367 ms
33,872 KB
testcase_23 AC 344 ms
35,280 KB
testcase_24 AC 242 ms
31,568 KB
testcase_25 AC 157 ms
29,264 KB
testcase_26 AC 384 ms
35,664 KB
testcase_27 AC 239 ms
31,688 KB
testcase_28 AC 264 ms
32,336 KB
testcase_29 AC 285 ms
33,232 KB
testcase_30 AC 182 ms
30,736 KB
testcase_31 AC 386 ms
34,384 KB
testcase_32 AC 341 ms
33,744 KB
testcase_33 AC 282 ms
33,360 KB
testcase_34 AC 377 ms
35,280 KB
testcase_35 AC 169 ms
30,152 KB
testcase_36 AC 222 ms
31,440 KB
testcase_37 AC 131 ms
29,648 KB
testcase_38 AC 154 ms
29,648 KB
testcase_39 AC 200 ms
30,416 KB
testcase_40 AC 303 ms
32,464 KB
testcase_41 AC 388 ms
35,280 KB
testcase_42 AC 281 ms
32,496 KB
testcase_43 AC 370 ms
35,408 KB
testcase_44 AC 129 ms
28,880 KB
testcase_45 AC 279 ms
32,208 KB
testcase_46 AC 310 ms
33,488 KB
testcase_47 AC 372 ms
35,312 KB
testcase_48 AC 328 ms
33,616 KB
testcase_49 AC 327 ms
33,744 KB
testcase_50 AC 382 ms
34,512 KB
testcase_51 AC 209 ms
30,928 KB
testcase_52 AC 100 ms
29,000 KB
testcase_53 AC 102 ms
28,488 KB
testcase_54 AC 103 ms
29,128 KB
testcase_55 AC 190 ms
30,536 KB
testcase_56 AC 163 ms
29,768 KB
testcase_57 AC 140 ms
29,296 KB
testcase_58 AC 123 ms
29,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

m = gets.to_i
raise unless m.between?(1, 50000)

ps = m.times.map { get }
ps.each { |p|
  x, y = p.rect
  raise unless x.between?(-10000, +10000)
  raise unless y.between?(-10000, +10000)
}

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