結果

問題 No.471 直列回転機
ユーザー kimiyukikimiyuki
提出日時 2016-12-21 00:25:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 417 ms / 3,141 ms
コード長 621 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,312 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:18:48
合計ジャッジ時間 15,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
27,224 KB
testcase_01 AC 47 ms
27,208 KB
testcase_02 AC 52 ms
27,464 KB
testcase_03 AC 49 ms
27,592 KB
testcase_04 AC 51 ms
27,336 KB
testcase_05 AC 47 ms
27,336 KB
testcase_06 AC 45 ms
27,592 KB
testcase_07 AC 46 ms
27,208 KB
testcase_08 AC 86 ms
27,976 KB
testcase_09 AC 87 ms
27,848 KB
testcase_10 AC 65 ms
27,464 KB
testcase_11 AC 186 ms
28,744 KB
testcase_12 AC 335 ms
30,584 KB
testcase_13 AC 340 ms
30,680 KB
testcase_14 AC 366 ms
30,808 KB
testcase_15 AC 417 ms
31,192 KB
testcase_16 AC 49 ms
27,096 KB
testcase_17 AC 46 ms
27,464 KB
testcase_18 AC 47 ms
27,464 KB
testcase_19 AC 49 ms
27,208 KB
testcase_20 AC 396 ms
31,056 KB
testcase_21 AC 138 ms
27,984 KB
testcase_22 AC 353 ms
30,416 KB
testcase_23 AC 325 ms
30,416 KB
testcase_24 AC 227 ms
29,136 KB
testcase_25 AC 104 ms
28,112 KB
testcase_26 AC 371 ms
31,312 KB
testcase_27 AC 207 ms
29,360 KB
testcase_28 AC 235 ms
29,648 KB
testcase_29 AC 254 ms
29,520 KB
testcase_30 AC 138 ms
28,112 KB
testcase_31 AC 373 ms
31,184 KB
testcase_32 AC 337 ms
30,544 KB
testcase_33 AC 254 ms
29,904 KB
testcase_34 AC 363 ms
30,800 KB
testcase_35 AC 132 ms
27,856 KB
testcase_36 AC 186 ms
28,624 KB
testcase_37 AC 87 ms
27,976 KB
testcase_38 AC 115 ms
27,984 KB
testcase_39 AC 162 ms
28,240 KB
testcase_40 AC 274 ms
29,904 KB
testcase_41 AC 384 ms
31,184 KB
testcase_42 AC 252 ms
29,776 KB
testcase_43 AC 358 ms
30,544 KB
testcase_44 AC 84 ms
27,752 KB
testcase_45 AC 255 ms
30,032 KB
testcase_46 AC 283 ms
29,776 KB
testcase_47 AC 341 ms
30,800 KB
testcase_48 AC 304 ms
30,416 KB
testcase_49 AC 289 ms
30,160 KB
testcase_50 AC 343 ms
30,928 KB
testcase_51 AC 170 ms
28,752 KB
testcase_52 AC 50 ms
27,336 KB
testcase_53 AC 52 ms
27,592 KB
testcase_54 AC 51 ms
27,976 KB
testcase_55 AC 135 ms
27,848 KB
testcase_56 AC 121 ms
27,720 KB
testcase_57 AC 91 ms
27,464 KB
testcase_58 AC 69 ms
27,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

m = int(input())
x = [ None ] * m
y = [ None ] * m
for i in range(m):
    x[i], y[i] = map(int, input().split())

def ask(x, y):
    print('?', x, y)
    sys.stdout.flush()
    fx, fy = map(int, input().split())
    return fx, fy

# [ x' ]   [ a b e ] [ x ]
# [ y' ] = [ c d f ] [ y ]
# [ 1  ]   [     1 ] [ 1 ]
ae, cf = ask(1, 0)
aae, ccf = ask(2, 0)
a = aae - ae
e = ae - a
c = ccf - cf
f = cf - c
be, df = ask(0, 1)
b = be - e
d = df - f

def rotate(x, y):
    fx = a*x + b*y + e
    fy = c*x + d*y + f
    return fx, fy

print('!')
for i in range(m):
    print(*rotate(x[i], y[i]))
0