結果

問題 No.471 直列回転機
ユーザー maspymaspy
提出日時 2020-03-06 17:31:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,623 ms / 3,141 ms
コード長 579 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,008 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:46:07
合計ジャッジ時間 42,582 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
27,096 KB
testcase_01 AC 60 ms
27,464 KB
testcase_02 AC 61 ms
27,464 KB
testcase_03 AC 60 ms
27,216 KB
testcase_04 AC 60 ms
27,592 KB
testcase_05 AC 73 ms
27,592 KB
testcase_06 AC 65 ms
26,952 KB
testcase_07 AC 67 ms
27,336 KB
testcase_08 AC 250 ms
28,232 KB
testcase_09 AC 255 ms
28,104 KB
testcase_10 AC 153 ms
27,848 KB
testcase_11 AC 618 ms
30,024 KB
testcase_12 AC 1,347 ms
32,760 KB
testcase_13 AC 1,307 ms
32,984 KB
testcase_14 AC 1,499 ms
33,368 KB
testcase_15 AC 1,623 ms
34,008 KB
testcase_16 AC 67 ms
27,352 KB
testcase_17 AC 57 ms
27,488 KB
testcase_18 AC 57 ms
27,592 KB
testcase_19 AC 56 ms
27,208 KB
testcase_20 AC 1,449 ms
33,872 KB
testcase_21 AC 310 ms
28,160 KB
testcase_22 AC 1,354 ms
32,848 KB
testcase_23 AC 1,220 ms
32,976 KB
testcase_24 AC 728 ms
30,032 KB
testcase_25 AC 251 ms
28,240 KB
testcase_26 AC 1,445 ms
33,360 KB
testcase_27 AC 699 ms
30,160 KB
testcase_28 AC 848 ms
31,056 KB
testcase_29 AC 925 ms
31,312 KB
testcase_30 AC 377 ms
28,112 KB
testcase_31 AC 1,423 ms
33,488 KB
testcase_32 AC 1,259 ms
32,464 KB
testcase_33 AC 959 ms
30,928 KB
testcase_34 AC 1,410 ms
33,104 KB
testcase_35 AC 321 ms
28,368 KB
testcase_36 AC 601 ms
29,392 KB
testcase_37 AC 199 ms
27,984 KB
testcase_38 AC 288 ms
28,368 KB
testcase_39 AC 471 ms
29,136 KB
testcase_40 AC 1,015 ms
31,696 KB
testcase_41 AC 1,580 ms
33,872 KB
testcase_42 AC 948 ms
31,312 KB
testcase_43 AC 1,412 ms
33,360 KB
testcase_44 AC 155 ms
27,088 KB
testcase_45 AC 924 ms
31,312 KB
testcase_46 AC 1,040 ms
31,440 KB
testcase_47 AC 1,384 ms
33,488 KB
testcase_48 AC 1,163 ms
32,336 KB
testcase_49 AC 1,158 ms
32,464 KB
testcase_50 AC 1,345 ms
33,104 KB
testcase_51 AC 568 ms
29,264 KB
testcase_52 AC 68 ms
26,824 KB
testcase_53 AC 72 ms
27,584 KB
testcase_54 AC 76 ms
27,208 KB
testcase_55 AC 359 ms
28,616 KB
testcase_56 AC 289 ms
28,360 KB
testcase_57 AC 198 ms
27,848 KB
testcase_58 AC 158 ms
27,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
readline = sys.stdin.readline

# %%
M = int(readline())
XY = [tuple(map(int, readline().split())) for _ in range(M)]


# %%
def question(*args, offset='?'):
    if offset is None:
        print(*args, flush=True)
    else:
        print(offset, *args, flush=True)
    return readline()


# %%
a, b = map(int, question(0, 0).split())
c, d = map(int, question(1, 0).split())
e, f = map(int, question(0, 1).split())
c -= a
e -= a
d -= b
f -= b
print('!', flush=True)
for x, y in XY:
    print(a + c * x + e * y, b + d * x + f * y, flush=True)
0