結果

問題 No.471 直列回転機
ユーザー koba-e964koba-e964
提出日時 2016-12-21 13:31:05
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 529 ms / 3,141 ms
コード長 749 bytes
コンパイル時間 660 ms
コンパイル使用メモリ 61,992 KB
実行使用メモリ 25,592 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:27:24
合計ジャッジ時間 17,441 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,836 KB
testcase_01 AC 23 ms
24,940 KB
testcase_02 AC 23 ms
25,196 KB
testcase_03 AC 23 ms
25,196 KB
testcase_04 AC 23 ms
25,196 KB
testcase_05 AC 26 ms
25,196 KB
testcase_06 AC 27 ms
25,196 KB
testcase_07 AC 29 ms
24,940 KB
testcase_08 AC 70 ms
24,812 KB
testcase_09 AC 76 ms
25,452 KB
testcase_10 AC 46 ms
25,068 KB
testcase_11 AC 212 ms
24,812 KB
testcase_12 AC 428 ms
25,220 KB
testcase_13 AC 435 ms
24,580 KB
testcase_14 AC 488 ms
24,964 KB
testcase_15 AC 529 ms
24,836 KB
testcase_16 AC 26 ms
25,592 KB
testcase_17 AC 24 ms
24,556 KB
testcase_18 AC 23 ms
24,940 KB
testcase_19 AC 24 ms
25,196 KB
testcase_20 AC 512 ms
24,824 KB
testcase_21 AC 110 ms
25,208 KB
testcase_22 AC 439 ms
24,952 KB
testcase_23 AC 429 ms
25,208 KB
testcase_24 AC 260 ms
24,824 KB
testcase_25 AC 88 ms
25,208 KB
testcase_26 AC 509 ms
25,208 KB
testcase_27 AC 238 ms
25,208 KB
testcase_28 AC 290 ms
25,208 KB
testcase_29 AC 320 ms
24,824 KB
testcase_30 AC 134 ms
24,824 KB
testcase_31 AC 497 ms
25,208 KB
testcase_32 AC 405 ms
24,824 KB
testcase_33 AC 324 ms
24,568 KB
testcase_34 AC 486 ms
25,208 KB
testcase_35 AC 117 ms
24,952 KB
testcase_36 AC 201 ms
24,952 KB
testcase_37 AC 59 ms
25,080 KB
testcase_38 AC 101 ms
24,952 KB
testcase_39 AC 168 ms
25,080 KB
testcase_40 AC 357 ms
25,208 KB
testcase_41 AC 518 ms
25,208 KB
testcase_42 AC 329 ms
25,208 KB
testcase_43 AC 469 ms
24,568 KB
testcase_44 AC 62 ms
25,208 KB
testcase_45 AC 314 ms
24,824 KB
testcase_46 AC 370 ms
24,952 KB
testcase_47 AC 480 ms
25,208 KB
testcase_48 AC 401 ms
24,568 KB
testcase_49 AC 395 ms
25,208 KB
testcase_50 AC 472 ms
24,824 KB
testcase_51 AC 187 ms
25,204 KB
testcase_52 AC 28 ms
25,196 KB
testcase_53 AC 28 ms
24,940 KB
testcase_54 AC 29 ms
24,940 KB
testcase_55 AC 122 ms
25,196 KB
testcase_56 AC 102 ms
25,196 KB
testcase_57 AC 76 ms
25,324 KB
testcase_58 AC 45 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef vector<ll> VL;
typedef pair<int, int> PI;
const ll mod = 1e9 + 7;



int main(void){
  int m;
  cin >> m;
  VL x(m), y(m);
  REP(i, 0, m) {
    cin >> x[i] >> y[i];
  }
  ll ox, oy;
  cout << "? 0 0" << endl;
  cin >> ox >> oy;
  ll kx, ky;
  cout << "? 1 0" << endl;
  cin >> kx >> ky;
  kx -= ox;
  ky -= oy;
  ll lx, ly;
  cout << "? 0 1" << endl;
  cin >> lx >> ly;
  lx -= ox;
  ly -= oy;
  cout << "!" << endl;
  REP(i, 0, m) {
    cout << ox + kx * x[i] + lx * y[i];
    cout << " ";
    cout << oy + ky * x[i] + ly * y[i];
    cout << endl;
  }
}
0