結果

問題 No.471 直列回転機
ユーザー nebukuro09nebukuro09
提出日時 2016-12-25 16:26:21
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 356 ms / 3,141 ms
コード長 737 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 118,272 KB
実行使用メモリ 25,464 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-06-12 06:05:18
合計ジャッジ時間 13,416 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,580 KB
testcase_01 AC 20 ms
25,196 KB
testcase_02 AC 19 ms
25,196 KB
testcase_03 AC 19 ms
25,196 KB
testcase_04 AC 19 ms
24,556 KB
testcase_05 AC 22 ms
25,324 KB
testcase_06 AC 21 ms
25,196 KB
testcase_07 AC 24 ms
25,184 KB
testcase_08 AC 45 ms
24,940 KB
testcase_09 AC 48 ms
24,812 KB
testcase_10 AC 33 ms
25,196 KB
testcase_11 AC 151 ms
24,812 KB
testcase_12 AC 277 ms
24,836 KB
testcase_13 AC 274 ms
24,964 KB
testcase_14 AC 314 ms
24,944 KB
testcase_15 AC 356 ms
25,464 KB
testcase_16 AC 25 ms
24,952 KB
testcase_17 AC 22 ms
24,812 KB
testcase_18 AC 23 ms
24,812 KB
testcase_19 AC 22 ms
24,940 KB
testcase_20 AC 330 ms
24,824 KB
testcase_21 AC 83 ms
25,208 KB
testcase_22 AC 287 ms
25,208 KB
testcase_23 AC 273 ms
25,208 KB
testcase_24 AC 169 ms
25,196 KB
testcase_25 AC 72 ms
24,824 KB
testcase_26 AC 317 ms
25,208 KB
testcase_27 AC 166 ms
24,824 KB
testcase_28 AC 203 ms
25,208 KB
testcase_29 AC 204 ms
24,824 KB
testcase_30 AC 97 ms
24,964 KB
testcase_31 AC 325 ms
24,568 KB
testcase_32 AC 286 ms
24,568 KB
testcase_33 AC 222 ms
24,952 KB
testcase_34 AC 323 ms
24,824 KB
testcase_35 AC 90 ms
24,824 KB
testcase_36 AC 145 ms
24,824 KB
testcase_37 AC 49 ms
24,952 KB
testcase_38 AC 77 ms
25,208 KB
testcase_39 AC 130 ms
24,824 KB
testcase_40 AC 230 ms
25,208 KB
testcase_41 AC 324 ms
24,976 KB
testcase_42 AC 205 ms
25,208 KB
testcase_43 AC 299 ms
24,824 KB
testcase_44 AC 53 ms
24,952 KB
testcase_45 AC 202 ms
25,208 KB
testcase_46 AC 237 ms
24,568 KB
testcase_47 AC 298 ms
25,208 KB
testcase_48 AC 271 ms
24,952 KB
testcase_49 AC 245 ms
24,824 KB
testcase_50 AC 310 ms
24,824 KB
testcase_51 AC 138 ms
24,824 KB
testcase_52 AC 22 ms
25,196 KB
testcase_53 AC 24 ms
25,196 KB
testcase_54 AC 24 ms
25,196 KB
testcase_55 AC 101 ms
25,196 KB
testcase_56 AC 81 ms
24,940 KB
testcase_57 AC 68 ms
25,196 KB
testcase_58 AC 43 ms
24,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;


void main() {
    auto M = readln.chomp.to!int;
    auto P = M.iota.map!(_ => readln.split.map!(to!int).array).array;

    writeln("? 0 0");
    stdout.flush;
    auto dxdy = readln.split.map!(to!int).array;

    writeln("? 1 0");
    stdout.flush;
    auto C = readln.split.map!(to!int).array;

    auto cos = C[0] - dxdy[0];
    auto sin = C[1] - dxdy[1];

    writeln("!");
    foreach (p; P) {
        auto x = p[0] * cos - p[1] * sin + dxdy[0];
        auto y = p[0] * sin + p[1] * cos + dxdy[1];
        writeln(x, " ", y);
    }
    stdout.flush;
}
0