結果

問題 No.471 直列回転機
ユーザー cielciel
提出日時 2016-12-27 21:46:28
言語 Ruby
(3.3.0)
結果
AC  
実行時間 446 ms / 3,141 ms
コード長 232 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 33,112 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-06-11 10:37:02
合計ジャッジ時間 17,505 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
29,144 KB
testcase_01 AC 97 ms
28,896 KB
testcase_02 AC 95 ms
28,384 KB
testcase_03 AC 96 ms
29,152 KB
testcase_04 AC 98 ms
28,640 KB
testcase_05 AC 104 ms
28,768 KB
testcase_06 AC 100 ms
28,632 KB
testcase_07 AC 97 ms
29,152 KB
testcase_08 AC 151 ms
29,720 KB
testcase_09 AC 148 ms
29,664 KB
testcase_10 AC 123 ms
29,280 KB
testcase_11 AC 248 ms
30,048 KB
testcase_12 AC 356 ms
33,112 KB
testcase_13 AC 366 ms
32,984 KB
testcase_14 AC 392 ms
32,984 KB
testcase_15 AC 446 ms
32,672 KB
testcase_16 AC 110 ms
28,760 KB
testcase_17 AC 101 ms
28,640 KB
testcase_18 AC 96 ms
28,640 KB
testcase_19 AC 95 ms
28,888 KB
testcase_20 AC 399 ms
32,720 KB
testcase_21 AC 171 ms
29,648 KB
testcase_22 AC 368 ms
32,720 KB
testcase_23 AC 354 ms
32,464 KB
testcase_24 AC 267 ms
31,312 KB
testcase_25 AC 156 ms
29,648 KB
testcase_26 AC 385 ms
32,584 KB
testcase_27 AC 240 ms
31,312 KB
testcase_28 AC 273 ms
31,184 KB
testcase_29 AC 288 ms
30,928 KB
testcase_30 AC 184 ms
29,648 KB
testcase_31 AC 395 ms
32,976 KB
testcase_32 AC 352 ms
32,720 KB
testcase_33 AC 295 ms
31,312 KB
testcase_34 AC 394 ms
32,848 KB
testcase_35 AC 189 ms
29,392 KB
testcase_36 AC 233 ms
30,032 KB
testcase_37 AC 130 ms
29,264 KB
testcase_38 AC 171 ms
29,648 KB
testcase_39 AC 203 ms
30,416 KB
testcase_40 AC 326 ms
31,056 KB
testcase_41 AC 437 ms
32,592 KB
testcase_42 AC 320 ms
31,312 KB
testcase_43 AC 368 ms
32,848 KB
testcase_44 AC 129 ms
29,136 KB
testcase_45 AC 281 ms
31,312 KB
testcase_46 AC 313 ms
30,928 KB
testcase_47 AC 388 ms
32,976 KB
testcase_48 AC 336 ms
32,464 KB
testcase_49 AC 323 ms
32,848 KB
testcase_50 AC 380 ms
33,104 KB
testcase_51 AC 209 ms
30,288 KB
testcase_52 AC 99 ms
28,744 KB
testcase_53 AC 97 ms
28,744 KB
testcase_54 AC 97 ms
29,128 KB
testcase_55 AC 177 ms
29,384 KB
testcase_56 AC 162 ms
29,512 KB
testcase_57 AC 145 ms
29,256 KB
testcase_58 AC 125 ms
28,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

m=gets.to_i.times.map{gets.split.map(&:to_f)}
$>.<<("? 0 0\n? 1 1\n!\n").flush
dx,dy=gets.split.map(&:to_f)
cms,cps=gets.split.map(&:to_f)
cms-=dx
cps-=dy
c=(cms+cps)/2
s=(cps-cms)/2
m.each{|x,y|puts '%f %f'%[x*c-y*s+dx,x*s+y*c+dy]}
0