結果

問題 No.471 直列回転機
ユーザー けーけー
提出日時 2017-04-13 22:18:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 468 ms / 3,141 ms
コード長 710 bytes
コンパイル時間 1,556 ms
コンパイル使用メモリ 166,668 KB
実行使用メモリ 25,592 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-06-11 10:38:25
合計ジャッジ時間 16,841 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,220 KB
testcase_01 AC 20 ms
24,812 KB
testcase_02 AC 19 ms
25,196 KB
testcase_03 AC 20 ms
24,556 KB
testcase_04 AC 20 ms
25,580 KB
testcase_05 AC 26 ms
25,196 KB
testcase_06 AC 23 ms
24,812 KB
testcase_07 AC 27 ms
25,196 KB
testcase_08 AC 60 ms
24,940 KB
testcase_09 AC 66 ms
24,812 KB
testcase_10 AC 41 ms
24,844 KB
testcase_11 AC 192 ms
24,556 KB
testcase_12 AC 378 ms
24,836 KB
testcase_13 AC 407 ms
25,220 KB
testcase_14 AC 430 ms
25,220 KB
testcase_15 AC 366 ms
25,220 KB
testcase_16 AC 28 ms
24,952 KB
testcase_17 AC 21 ms
25,196 KB
testcase_18 AC 20 ms
24,812 KB
testcase_19 AC 21 ms
25,568 KB
testcase_20 AC 467 ms
24,824 KB
testcase_21 AC 93 ms
24,824 KB
testcase_22 AC 381 ms
24,824 KB
testcase_23 AC 375 ms
24,824 KB
testcase_24 AC 230 ms
25,208 KB
testcase_25 AC 86 ms
24,824 KB
testcase_26 AC 441 ms
25,208 KB
testcase_27 AC 211 ms
24,824 KB
testcase_28 AC 248 ms
24,952 KB
testcase_29 AC 299 ms
24,824 KB
testcase_30 AC 110 ms
24,568 KB
testcase_31 AC 468 ms
25,592 KB
testcase_32 AC 360 ms
25,208 KB
testcase_33 AC 290 ms
24,824 KB
testcase_34 AC 437 ms
24,568 KB
testcase_35 AC 104 ms
24,824 KB
testcase_36 AC 186 ms
24,824 KB
testcase_37 AC 55 ms
25,208 KB
testcase_38 AC 83 ms
24,824 KB
testcase_39 AC 140 ms
25,436 KB
testcase_40 AC 300 ms
24,824 KB
testcase_41 AC 455 ms
25,208 KB
testcase_42 AC 291 ms
25,448 KB
testcase_43 AC 409 ms
25,196 KB
testcase_44 AC 53 ms
24,824 KB
testcase_45 AC 272 ms
25,208 KB
testcase_46 AC 327 ms
24,824 KB
testcase_47 AC 434 ms
25,208 KB
testcase_48 AC 353 ms
25,208 KB
testcase_49 AC 357 ms
25,208 KB
testcase_50 AC 416 ms
25,208 KB
testcase_51 AC 168 ms
24,824 KB
testcase_52 AC 22 ms
25,196 KB
testcase_53 AC 23 ms
24,812 KB
testcase_54 AC 24 ms
25,196 KB
testcase_55 AC 109 ms
25,196 KB
testcase_56 AC 89 ms
25,196 KB
testcase_57 AC 68 ms
25,196 KB
testcase_58 AC 41 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
const int inf=8938103643641919514ll;
const int mod=1000000007;
const int dd[]={0,-1,0,1,0};
using namespace std;
int a,b,c,d;
int p[100000],q[100000];
signed main(){
	int i,j;
	cin>>a;
	for(i=0;i<a;i++)
		cin>>p[i]>>q[i];
	cout<<"? 0 0"<<endl;
	int x,y;
	cin>>x>>y;
	cout<<"? 1 0"<<endl;
	int z,w;
	cin>>z>>w;
	z-=x;
	w-=y;
	if(z==0){
		if(w==1)
			for(i=0;i<a;i++){
				int x=p[i];
				p[i]=-q[i];
				q[i]=x;
			}
		else
			for(i=0;i<a;i++){
				int x=p[i];
				p[i]=q[i];
				q[i]=-x;
			}
	}else if(z==-1){
		for(i=0;i<a;i++)
			p[i]=-p[i],q[i]=-q[i];
	}
	for(i=0;i<a;i++)
		p[i]+=x,q[i]+=y;
	cout<<"!"<<endl;
	for(i=0;i<a;i++)
		cout<<p[i]<<" "<<q[i]<<endl;
}
0