結果

問題 No.471 直列回転機
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-12-21 13:24:40
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 715 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 30,200 KB
平均クエリ数 9097.08
最終ジャッジ日時 2024-07-16 11:45:08
合計ジャッジ時間 30,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
24,848 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 33 ms
25,196 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 36 ms
25,196 KB
testcase_07 AC 42 ms
24,940 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 1,101 ms
28,640 KB
testcase_13 AC 1,140 ms
28,640 KB
testcase_14 RE -
testcase_15 AC 1,398 ms
30,200 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 35 ms
25,580 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 1,130 ms
29,152 KB
testcase_24 AC 639 ms
26,464 KB
testcase_25 AC 208 ms
25,232 KB
testcase_26 RE -
testcase_27 AC 608 ms
26,208 KB
testcase_28 RE -
testcase_29 AC 840 ms
27,232 KB
testcase_30 RE -
testcase_31 AC 1,295 ms
29,664 KB
testcase_32 AC 1,098 ms
28,768 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 AC 532 ms
25,824 KB
testcase_37 RE -
testcase_38 AC 251 ms
25,232 KB
testcase_39 RE -
testcase_40 AC 902 ms
28,128 KB
testcase_41 AC 1,327 ms
30,048 KB
testcase_42 AC 849 ms
27,104 KB
testcase_43 RE -
testcase_44 AC 127 ms
24,976 KB
testcase_45 AC 832 ms
27,104 KB
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 AC 492 ms
25,568 KB
testcase_52 AC 43 ms
24,952 KB
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 AC 244 ms
24,568 KB
testcase_57 AC 157 ms
24,928 KB
testcase_58 AC 122 ms
24,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
import sys
from collections import namedtuple
P = namedtuple('P', 'x, y')

def nya(mes):
    print mes
    sys.stdout.flush()


M = int(raw_input())
points = [P(*map(int, raw_input().split())) for _ in xrange(M)]

nya('? 0 0')
p00 = P(*map(int, raw_input().split()))
nya('? 1 0')
p10 = P(*map(int, raw_input().split()))
nya('? 1 1')
p11 = P(*map(int, raw_input().split()))

assert p00.y == p10.y and abs(p00.x - p10.x) == 1
assert p10.x == p11.x and abs(p10.y - p11.y) == 1

xminus = p00.x > p10.x
yminus = p10.y > p11.y

nya('!')
for p in points:
    x = p00.x + p.x * (-1 if xminus else 1)
    y = p00.y + p.y * (-1 if yminus else 1)
    nya('{} {}'.format(x, y))
0