結果

問題 No.471 直列回転機
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-03-30 18:34:32
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,310 ms / 3,141 ms
コード長 1,539 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 28,896 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:39:49
合計ジャッジ時間 35,174 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
25,232 KB
testcase_01 AC 26 ms
25,196 KB
testcase_02 AC 28 ms
25,196 KB
testcase_03 AC 26 ms
25,196 KB
testcase_04 AC 26 ms
24,940 KB
testcase_05 AC 39 ms
24,812 KB
testcase_06 AC 32 ms
24,812 KB
testcase_07 AC 38 ms
24,812 KB
testcase_08 AC 188 ms
24,812 KB
testcase_09 AC 194 ms
24,812 KB
testcase_10 AC 121 ms
24,812 KB
testcase_11 AC 537 ms
25,544 KB
testcase_12 AC 999 ms
27,872 KB
testcase_13 AC 1,028 ms
28,128 KB
testcase_14 AC 1,161 ms
28,384 KB
testcase_15 AC 1,310 ms
28,896 KB
testcase_16 AC 34 ms
24,848 KB
testcase_17 AC 28 ms
25,196 KB
testcase_18 AC 26 ms
25,196 KB
testcase_19 AC 27 ms
25,196 KB
testcase_20 AC 1,242 ms
28,640 KB
testcase_21 AC 242 ms
25,232 KB
testcase_22 AC 1,045 ms
28,128 KB
testcase_23 AC 1,011 ms
27,872 KB
testcase_24 AC 589 ms
25,696 KB
testcase_25 AC 193 ms
24,848 KB
testcase_26 AC 1,228 ms
28,384 KB
testcase_27 AC 570 ms
25,440 KB
testcase_28 AC 707 ms
26,336 KB
testcase_29 AC 764 ms
26,720 KB
testcase_30 AC 304 ms
25,220 KB
testcase_31 AC 1,204 ms
28,760 KB
testcase_32 AC 1,004 ms
27,488 KB
testcase_33 AC 778 ms
26,464 KB
testcase_34 AC 1,177 ms
28,768 KB
testcase_35 AC 283 ms
24,848 KB
testcase_36 AC 534 ms
25,696 KB
testcase_37 AC 146 ms
24,592 KB
testcase_38 AC 248 ms
25,232 KB
testcase_39 AC 417 ms
25,232 KB
testcase_40 AC 847 ms
26,976 KB
testcase_41 AC 1,267 ms
28,768 KB
testcase_42 AC 790 ms
26,464 KB
testcase_43 AC 1,158 ms
28,128 KB
testcase_44 AC 119 ms
24,848 KB
testcase_45 AC 787 ms
26,336 KB
testcase_46 AC 859 ms
26,720 KB
testcase_47 AC 1,186 ms
28,512 KB
testcase_48 AC 1,016 ms
27,104 KB
testcase_49 AC 972 ms
27,488 KB
testcase_50 AC 1,150 ms
27,872 KB
testcase_51 AC 499 ms
25,056 KB
testcase_52 AC 40 ms
24,824 KB
testcase_53 AC 40 ms
24,824 KB
testcase_54 AC 45 ms
25,208 KB
testcase_55 AC 299 ms
25,464 KB
testcase_56 AC 228 ms
25,208 KB
testcase_57 AC 148 ms
24,824 KB
testcase_58 AC 111 ms
25,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
import sys
from itertools import chain, repeat

def Struct(name, fields):
    fields = fields.replace(',', ' ').split()
    def __init__(self, *args):
        n, m = len(args), len(fields)
        if n > m:
            raise TypeError('__init__() takes at most {} arguments ({} given)'.format(m, n))
        args = chain(args, repeat(None))
        for field, value in zip(fields, args):
            setattr(self, field, value)
    def __str__(self):
        return '{}({})'.format(name, ', '.join('{}={}'.format(f, getattr(self, f)) for f in fields))
    def __getitem__(self, index):
        return getattr(self, fields[index])
    def __setitem__(self, index, value):
        setattr(self, fields[index], value)
    attrs = {
        '__slots__': fields,
        '__init__':  __init__,
        '__getitem__': __getitem__,
        '__setitem__': __setitem__,
        '__str__':  __str__,
        '__repr__': __str__,
    }
    return type(name, (object,), attrs)

P = Struct('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()))
p10.x -= p00.x
p10.y -= p00.y
nya('? 0 1')
p01 = P(*map(int, raw_input().split()))
p01.x -= p00.x
p01.y -= p00.y

nya('!')
for p in points:
    x = p10.x * p.x + p01.x * p.y + p00.x
    y = p10.y * p.x + p01.y * p.y + p00.y
    nya('{} {}'.format(x, y))
0