結果

問題 No.471 直列回転機
ユーザー te-shte-sh
提出日時 2017-12-11 12:23:46
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 360 ms / 3,141 ms
コード長 1,391 bytes
コンパイル時間 1,059 ms
コンパイル使用メモリ 105,948 KB
実行使用メモリ 25,216 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-06-12 22:59:04
合計ジャッジ時間 14,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,964 KB
testcase_01 AC 21 ms
24,812 KB
testcase_02 AC 22 ms
24,940 KB
testcase_03 AC 21 ms
24,812 KB
testcase_04 AC 21 ms
24,812 KB
testcase_05 AC 23 ms
24,940 KB
testcase_06 AC 22 ms
24,556 KB
testcase_07 AC 22 ms
24,544 KB
testcase_08 AC 49 ms
25,196 KB
testcase_09 AC 51 ms
24,556 KB
testcase_10 AC 34 ms
24,940 KB
testcase_11 AC 148 ms
24,556 KB
testcase_12 AC 293 ms
24,836 KB
testcase_13 AC 286 ms
24,836 KB
testcase_14 AC 313 ms
24,964 KB
testcase_15 AC 360 ms
24,964 KB
testcase_16 AC 24 ms
24,824 KB
testcase_17 AC 21 ms
24,556 KB
testcase_18 AC 22 ms
24,812 KB
testcase_19 AC 21 ms
24,940 KB
testcase_20 AC 341 ms
24,952 KB
testcase_21 AC 93 ms
24,824 KB
testcase_22 AC 287 ms
24,824 KB
testcase_23 AC 270 ms
25,064 KB
testcase_24 AC 173 ms
24,568 KB
testcase_25 AC 72 ms
24,952 KB
testcase_26 AC 334 ms
24,824 KB
testcase_27 AC 171 ms
24,568 KB
testcase_28 AC 192 ms
24,824 KB
testcase_29 AC 231 ms
24,824 KB
testcase_30 AC 101 ms
24,824 KB
testcase_31 AC 337 ms
24,824 KB
testcase_32 AC 283 ms
24,568 KB
testcase_33 AC 216 ms
24,952 KB
testcase_34 AC 313 ms
24,952 KB
testcase_35 AC 95 ms
24,824 KB
testcase_36 AC 145 ms
24,952 KB
testcase_37 AC 51 ms
24,952 KB
testcase_38 AC 72 ms
24,568 KB
testcase_39 AC 122 ms
25,064 KB
testcase_40 AC 241 ms
25,216 KB
testcase_41 AC 330 ms
24,568 KB
testcase_42 AC 221 ms
24,568 KB
testcase_43 AC 296 ms
24,824 KB
testcase_44 AC 56 ms
25,208 KB
testcase_45 AC 208 ms
24,824 KB
testcase_46 AC 239 ms
25,052 KB
testcase_47 AC 308 ms
24,568 KB
testcase_48 AC 261 ms
24,952 KB
testcase_49 AC 251 ms
24,952 KB
testcase_50 AC 307 ms
24,824 KB
testcase_51 AC 130 ms
24,568 KB
testcase_52 AC 24 ms
24,556 KB
testcase_53 AC 25 ms
25,196 KB
testcase_54 AC 24 ms
24,812 KB
testcase_55 AC 102 ms
24,940 KB
testcase_56 AC 86 ms
25,196 KB
testcase_57 AC 64 ms
24,812 KB
testcase_58 AC 37 ms
24,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

alias point = Point!int;

void main()
{
  auto m = readln.chomp.to!int;
  auto p = new point[](m);
  foreach (i; 0..m) {
    auto rd = readln.splitter;
    auto x = rd.front.to!int; rd.popFront();
    auto y = rd.front.to!int;
    p[i] = point(x, y);
  }

  auto q1 = ask(point(0, 0));
  auto q2 = ask(point(1, 0)) - q1;

  writeln("!");
  foreach (pi; p) {
    point r;
    if (q2.x == 1)
      r = point(pi.x, pi.y);
    else if (q2.x == -1)
      r = point(-pi.x, -pi.y);
    else if (q2.y == 1)
      r = point(-pi.y, pi.x);
    else if (q2.y == -1)
      r = point(pi.y, -pi.x);

    r = r + q1;

    writeln(r.x, " ", r.y);
  }
}

auto ask(point p)
{
  writeln("? ", p.x, " ", p.y); stdout.flush();
  auto rd = readln.split.to!(int[]), x = rd[0], y = rd[1];
  return point(x, y);
}

struct Point(T)
{
  T x, y;
  pure auto opBinary(string op: "+")(Point!T rhs) const { return Point!T(x + rhs.x, y + rhs.y); }
  pure auto opBinary(string op: "-")(Point!T rhs) const { return Point!T(x - rhs.x, y - rhs.y); }
  pure auto opBinary(string op: "*")(Point!T rhs) const { return x * rhs.x + y * rhs.y; }
  pure auto opBinary(string op: "*")(T a) const { return Point!T(x * a, y * a); }
  pure auto opBinary(string op: "/")(T a) const { return Point!T(x / a, y / a); }
  pure auto hypot2() const { return x ^^ 2 + y ^^ 2; }
}
0