結果

問題 No.471 直列回転機
ユーザー cielciel
提出日時 2016-12-24 22:42:38
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,691 ms / 3,141 ms
コード長 254 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 33,240 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-06-11 10:35:07
合計ジャッジ時間 47,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
28,888 KB
testcase_01 AC 114 ms
28,888 KB
testcase_02 AC 110 ms
29,024 KB
testcase_03 AC 114 ms
28,896 KB
testcase_04 AC 112 ms
28,760 KB
testcase_05 AC 129 ms
28,768 KB
testcase_06 AC 117 ms
29,024 KB
testcase_07 AC 128 ms
28,896 KB
testcase_08 AC 309 ms
29,408 KB
testcase_09 AC 321 ms
29,920 KB
testcase_10 AC 227 ms
29,152 KB
testcase_11 AC 721 ms
30,216 KB
testcase_12 AC 1,373 ms
32,472 KB
testcase_13 AC 1,392 ms
33,240 KB
testcase_14 AC 1,494 ms
32,856 KB
testcase_15 AC 1,691 ms
32,736 KB
testcase_16 AC 121 ms
29,272 KB
testcase_17 AC 114 ms
28,512 KB
testcase_18 AC 113 ms
28,896 KB
testcase_19 AC 111 ms
28,768 KB
testcase_20 AC 1,607 ms
31,824 KB
testcase_21 AC 380 ms
29,800 KB
testcase_22 AC 1,400 ms
32,848 KB
testcase_23 AC 1,393 ms
32,464 KB
testcase_24 AC 812 ms
31,440 KB
testcase_25 AC 310 ms
29,904 KB
testcase_26 AC 1,594 ms
32,720 KB
testcase_27 AC 789 ms
31,184 KB
testcase_28 AC 959 ms
31,440 KB
testcase_29 AC 1,021 ms
31,184 KB
testcase_30 AC 450 ms
29,520 KB
testcase_31 AC 1,579 ms
32,464 KB
testcase_32 AC 1,319 ms
32,976 KB
testcase_33 AC 1,069 ms
30,920 KB
testcase_34 AC 1,544 ms
32,592 KB
testcase_35 AC 391 ms
29,776 KB
testcase_36 AC 689 ms
30,032 KB
testcase_37 AC 258 ms
29,520 KB
testcase_38 AC 365 ms
29,776 KB
testcase_39 AC 541 ms
30,288 KB
testcase_40 AC 1,120 ms
31,056 KB
testcase_41 AC 1,633 ms
32,848 KB
testcase_42 AC 1,033 ms
31,184 KB
testcase_43 AC 1,505 ms
32,720 KB
testcase_44 AC 210 ms
29,392 KB
testcase_45 AC 1,027 ms
31,184 KB
testcase_46 AC 1,125 ms
31,056 KB
testcase_47 AC 1,514 ms
32,592 KB
testcase_48 AC 1,270 ms
32,592 KB
testcase_49 AC 1,270 ms
32,592 KB
testcase_50 AC 1,476 ms
32,720 KB
testcase_51 AC 651 ms
30,416 KB
testcase_52 AC 126 ms
28,872 KB
testcase_53 AC 124 ms
28,744 KB
testcase_54 AC 130 ms
28,616 KB
testcase_55 AC 437 ms
29,512 KB
testcase_56 AC 345 ms
29,256 KB
testcase_57 AC 250 ms
29,000 KB
testcase_58 AC 213 ms
29,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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