結果

問題 No.471 直列回転機
ユーザー hirokazu1020hirokazu1020
提出日時 2016-12-21 22:47:17
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 502 ms / 3,141 ms
コード長 1,028 bytes
コンパイル時間 998 ms
コンパイル使用メモリ 93,600 KB
実行使用メモリ 25,592 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:31:53
合計ジャッジ時間 17,967 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,580 KB
testcase_01 AC 24 ms
25,580 KB
testcase_02 AC 24 ms
25,196 KB
testcase_03 AC 24 ms
25,068 KB
testcase_04 AC 25 ms
25,196 KB
testcase_05 AC 31 ms
25,068 KB
testcase_06 AC 26 ms
25,068 KB
testcase_07 AC 31 ms
24,812 KB
testcase_08 AC 62 ms
25,196 KB
testcase_09 AC 68 ms
24,796 KB
testcase_10 AC 47 ms
25,196 KB
testcase_11 AC 205 ms
25,068 KB
testcase_12 AC 420 ms
24,836 KB
testcase_13 AC 429 ms
25,220 KB
testcase_14 AC 471 ms
24,836 KB
testcase_15 AC 502 ms
25,220 KB
testcase_16 AC 29 ms
25,208 KB
testcase_17 AC 25 ms
25,196 KB
testcase_18 AC 23 ms
25,196 KB
testcase_19 AC 25 ms
24,812 KB
testcase_20 AC 472 ms
25,208 KB
testcase_21 AC 110 ms
25,208 KB
testcase_22 AC 431 ms
24,568 KB
testcase_23 AC 421 ms
24,824 KB
testcase_24 AC 240 ms
24,568 KB
testcase_25 AC 88 ms
25,196 KB
testcase_26 AC 477 ms
25,208 KB
testcase_27 AC 225 ms
24,812 KB
testcase_28 AC 280 ms
24,824 KB
testcase_29 AC 302 ms
25,208 KB
testcase_30 AC 131 ms
25,208 KB
testcase_31 AC 470 ms
24,568 KB
testcase_32 AC 401 ms
24,824 KB
testcase_33 AC 310 ms
25,208 KB
testcase_34 AC 479 ms
25,208 KB
testcase_35 AC 109 ms
25,208 KB
testcase_36 AC 197 ms
25,208 KB
testcase_37 AC 61 ms
24,568 KB
testcase_38 AC 96 ms
25,208 KB
testcase_39 AC 161 ms
25,208 KB
testcase_40 AC 340 ms
25,080 KB
testcase_41 AC 490 ms
24,440 KB
testcase_42 AC 305 ms
25,080 KB
testcase_43 AC 447 ms
25,100 KB
testcase_44 AC 61 ms
24,824 KB
testcase_45 AC 297 ms
24,568 KB
testcase_46 AC 348 ms
25,208 KB
testcase_47 AC 447 ms
24,568 KB
testcase_48 AC 384 ms
24,812 KB
testcase_49 AC 371 ms
24,568 KB
testcase_50 AC 436 ms
25,080 KB
testcase_51 AC 169 ms
25,592 KB
testcase_52 AC 27 ms
25,196 KB
testcase_53 AC 29 ms
24,812 KB
testcase_54 AC 27 ms
25,556 KB
testcase_55 AC 115 ms
25,196 KB
testcase_56 AC 95 ms
24,812 KB
testcase_57 AC 75 ms
25,196 KB
testcase_58 AC 42 ms
25,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include<sstream>
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<climits>
#include<cmath>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<queue>
#include<numeric>
#include<functional>
#include<algorithm>
#include<bitset>
#include<tuple>
#include<unordered_set>
#include<random>
using namespace std;
#define INF (1<<29)
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define all(v) v.begin(),v.end()
#define uniq(v) v.erase(unique(all(v)),v.end())


int m;
int x[50000], y[50000];

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);

	cin >> m;
	rep(i,m) {
		cin >> x[i] >> y[i];
	}
	int cx, cy;
	cout << "? 0 0" << endl;
	cin >> cx >> cy;
	int mxx, mxy;
	int myx, myy;
	cout << "? 1 0" << endl;
	cin >> mxx >> mxy;
	mxx -= cx;
	mxy -= cy;
	cout << "? 0 1" << endl;
	cin >> myx >> myy;
	myx -= cx;
	myy -= cy;

	cout << "!" << endl;
	rep(i,m) {
		cout << mxx*x[i] + myx*y[i] + cx << ' ' << mxy*x[i] + myy*y[i] + cy << endl;
	}
	
	return 0;
}
0