結果

問題 No.471 直列回転機
ユーザー 👑 obakyanobakyan
提出日時 2019-05-02 21:14:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 459 ms / 3,141 ms
コード長 641 bytes
コンパイル時間 1,479 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 25,580 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-06-11 10:41:54
合計ジャッジ時間 15,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
25,220 KB
testcase_01 AC 21 ms
24,556 KB
testcase_02 AC 19 ms
25,196 KB
testcase_03 AC 19 ms
25,196 KB
testcase_04 AC 19 ms
24,812 KB
testcase_05 AC 20 ms
24,940 KB
testcase_06 AC 21 ms
25,196 KB
testcase_07 AC 23 ms
24,556 KB
testcase_08 AC 52 ms
24,812 KB
testcase_09 AC 59 ms
24,812 KB
testcase_10 AC 37 ms
25,196 KB
testcase_11 AC 190 ms
24,940 KB
testcase_12 AC 383 ms
24,836 KB
testcase_13 AC 379 ms
24,836 KB
testcase_14 AC 424 ms
25,220 KB
testcase_15 AC 347 ms
24,580 KB
testcase_16 AC 30 ms
24,824 KB
testcase_17 AC 23 ms
25,196 KB
testcase_18 AC 20 ms
25,196 KB
testcase_19 AC 19 ms
25,196 KB
testcase_20 AC 442 ms
25,180 KB
testcase_21 AC 92 ms
25,208 KB
testcase_22 AC 391 ms
25,208 KB
testcase_23 AC 381 ms
25,208 KB
testcase_24 AC 213 ms
24,824 KB
testcase_25 AC 75 ms
25,208 KB
testcase_26 AC 459 ms
25,208 KB
testcase_27 AC 207 ms
24,952 KB
testcase_28 AC 262 ms
25,208 KB
testcase_29 AC 282 ms
25,196 KB
testcase_30 AC 110 ms
25,208 KB
testcase_31 AC 450 ms
25,208 KB
testcase_32 AC 373 ms
24,952 KB
testcase_33 AC 291 ms
25,196 KB
testcase_34 AC 412 ms
25,208 KB
testcase_35 AC 102 ms
25,336 KB
testcase_36 AC 184 ms
24,952 KB
testcase_37 AC 61 ms
25,208 KB
testcase_38 AC 84 ms
24,824 KB
testcase_39 AC 143 ms
25,208 KB
testcase_40 AC 295 ms
25,208 KB
testcase_41 AC 445 ms
24,824 KB
testcase_42 AC 297 ms
24,824 KB
testcase_43 AC 402 ms
24,824 KB
testcase_44 AC 50 ms
24,824 KB
testcase_45 AC 273 ms
25,208 KB
testcase_46 AC 318 ms
24,824 KB
testcase_47 AC 424 ms
25,208 KB
testcase_48 AC 344 ms
25,208 KB
testcase_49 AC 351 ms
24,568 KB
testcase_50 AC 412 ms
25,208 KB
testcase_51 AC 172 ms
25,196 KB
testcase_52 AC 25 ms
24,428 KB
testcase_53 AC 23 ms
24,812 KB
testcase_54 AC 22 ms
25,196 KB
testcase_55 AC 104 ms
25,580 KB
testcase_56 AC 88 ms
25,196 KB
testcase_57 AC 71 ms
25,196 KB
testcase_58 AC 36 ms
25,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cstddef>
#include <vector>
#include <algorithm>
#include <cmath>
#include <string>
#include <iostream>
#include <iomanip>

int main(void)
{
  int m;
  std::cin >> m;
  std::vector<int> x(m);
  std::vector<int> y(m);
  for(int i = 0; i < m; i++){
    std::cin >> x[i] >> y[i];
  }
  int a, b, c, s;
  std::cout << "? 0 0" << std::endl;
  std::cin >> a >> b;
  std::cout << "? 1 0" << std::endl;
  std::cin >> c >> s;
  c -= a;
  s -= b;
  std::cout << "!" << std::endl;
  for(int i = 0; i < m; i++){
    std::cout << c * x[i] - s * y[i] + a << " " << s * x[i] + c * y[i] + b << std::endl;
  }
}
0