結果

問題 No.471 直列回転機
ユーザー vwxyzvwxyz
提出日時 2023-12-26 08:05:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 485 ms / 3,141 ms
コード長 298 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 34,136 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-09-27 15:01:59
合計ジャッジ時間 17,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
27,352 KB
testcase_01 AC 53 ms
26,952 KB
testcase_02 AC 50 ms
27,336 KB
testcase_03 AC 49 ms
26,952 KB
testcase_04 AC 49 ms
27,080 KB
testcase_05 AC 52 ms
27,464 KB
testcase_06 AC 50 ms
27,208 KB
testcase_07 AC 52 ms
26,824 KB
testcase_08 AC 103 ms
27,796 KB
testcase_09 AC 113 ms
27,976 KB
testcase_10 AC 82 ms
27,848 KB
testcase_11 AC 226 ms
29,640 KB
testcase_12 AC 388 ms
32,856 KB
testcase_13 AC 389 ms
32,856 KB
testcase_14 AC 420 ms
33,112 KB
testcase_15 AC 485 ms
34,136 KB
testcase_16 AC 52 ms
26,968 KB
testcase_17 AC 50 ms
27,208 KB
testcase_18 AC 50 ms
27,464 KB
testcase_19 AC 50 ms
26,952 KB
testcase_20 AC 430 ms
33,232 KB
testcase_21 AC 141 ms
28,240 KB
testcase_22 AC 397 ms
32,720 KB
testcase_23 AC 372 ms
32,592 KB
testcase_24 AC 239 ms
30,032 KB
testcase_25 AC 121 ms
27,728 KB
testcase_26 AC 425 ms
33,488 KB
testcase_27 AC 232 ms
30,032 KB
testcase_28 AC 266 ms
30,672 KB
testcase_29 AC 298 ms
31,184 KB
testcase_30 AC 159 ms
28,624 KB
testcase_31 AC 434 ms
33,488 KB
testcase_32 AC 384 ms
32,208 KB
testcase_33 AC 303 ms
31,184 KB
testcase_34 AC 424 ms
32,976 KB
testcase_35 AC 141 ms
27,984 KB
testcase_36 AC 208 ms
29,520 KB
testcase_37 AC 97 ms
27,984 KB
testcase_38 AC 130 ms
28,536 KB
testcase_39 AC 185 ms
29,008 KB
testcase_40 AC 320 ms
31,440 KB
testcase_41 AC 437 ms
33,360 KB
testcase_42 AC 296 ms
31,568 KB
testcase_43 AC 393 ms
33,232 KB
testcase_44 AC 93 ms
27,472 KB
testcase_45 AC 286 ms
31,312 KB
testcase_46 AC 329 ms
31,440 KB
testcase_47 AC 412 ms
33,104 KB
testcase_48 AC 358 ms
32,336 KB
testcase_49 AC 343 ms
31,952 KB
testcase_50 AC 398 ms
33,360 KB
testcase_51 AC 199 ms
29,136 KB
testcase_52 AC 54 ms
26,824 KB
testcase_53 AC 55 ms
27,080 KB
testcase_54 AC 56 ms
27,464 KB
testcase_55 AC 151 ms
28,488 KB
testcase_56 AC 134 ms
27,976 KB
testcase_57 AC 106 ms
27,464 KB
testcase_58 AC 83 ms
27,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=int(input())
XY=[]
for m in range(M):
    x,y=map(int,input().split())
    XY.append((x,y))
print("?",0,0)
a,b=map(int,input().split())
print("?",1,0)
c,d=map(int,input().split())
print("?",0,1)
e,f=map(int,input().split())
print("!")
for x,y in XY:
    print(a+(c-a)*x+(e-a)*y,b+(d-b)*x+(f-b)*y)
0