結果

問題 No.471 直列回転機
ユーザー furafura
提出日時 2020-10-19 14:25:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 308 ms / 3,141 ms
コード長 593 bytes
コンパイル時間 1,840 ms
コンパイル使用メモリ 201,320 KB
実行使用メモリ 25,580 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:46:28
合計ジャッジ時間 12,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
25,220 KB
testcase_01 AC 20 ms
25,196 KB
testcase_02 AC 19 ms
25,196 KB
testcase_03 AC 20 ms
25,196 KB
testcase_04 AC 20 ms
25,196 KB
testcase_05 AC 21 ms
25,196 KB
testcase_06 AC 20 ms
24,812 KB
testcase_07 AC 20 ms
25,196 KB
testcase_08 AC 38 ms
24,812 KB
testcase_09 AC 47 ms
24,812 KB
testcase_10 AC 29 ms
24,812 KB
testcase_11 AC 131 ms
25,196 KB
testcase_12 AC 253 ms
24,836 KB
testcase_13 AC 244 ms
24,824 KB
testcase_14 AC 273 ms
24,824 KB
testcase_15 AC 308 ms
24,836 KB
testcase_16 AC 22 ms
24,824 KB
testcase_17 AC 20 ms
25,196 KB
testcase_18 AC 21 ms
25,196 KB
testcase_19 AC 19 ms
24,940 KB
testcase_20 AC 276 ms
25,208 KB
testcase_21 AC 74 ms
24,824 KB
testcase_22 AC 251 ms
25,208 KB
testcase_23 AC 230 ms
24,824 KB
testcase_24 AC 150 ms
25,208 KB
testcase_25 AC 67 ms
24,952 KB
testcase_26 AC 266 ms
24,824 KB
testcase_27 AC 153 ms
25,208 KB
testcase_28 AC 166 ms
24,824 KB
testcase_29 AC 187 ms
24,824 KB
testcase_30 AC 91 ms
25,208 KB
testcase_31 AC 277 ms
25,192 KB
testcase_32 AC 250 ms
25,208 KB
testcase_33 AC 181 ms
25,208 KB
testcase_34 AC 272 ms
24,952 KB
testcase_35 AC 83 ms
24,952 KB
testcase_36 AC 120 ms
25,208 KB
testcase_37 AC 38 ms
25,208 KB
testcase_38 AC 65 ms
25,208 KB
testcase_39 AC 106 ms
24,824 KB
testcase_40 AC 198 ms
25,064 KB
testcase_41 AC 284 ms
24,824 KB
testcase_42 AC 196 ms
25,208 KB
testcase_43 AC 267 ms
24,824 KB
testcase_44 AC 52 ms
25,208 KB
testcase_45 AC 178 ms
25,052 KB
testcase_46 AC 214 ms
24,824 KB
testcase_47 AC 265 ms
25,100 KB
testcase_48 AC 216 ms
24,940 KB
testcase_49 AC 215 ms
24,824 KB
testcase_50 AC 249 ms
25,208 KB
testcase_51 AC 114 ms
25,208 KB
testcase_52 AC 22 ms
25,580 KB
testcase_53 AC 23 ms
24,556 KB
testcase_54 AC 23 ms
24,812 KB
testcase_55 AC 86 ms
25,196 KB
testcase_56 AC 73 ms
24,812 KB
testcase_57 AC 57 ms
24,812 KB
testcase_58 AC 32 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using lint=long long;

int main(){
	int n; scanf("%d",&n);
	vector<int> x(n),y(n);
	rep(i,n) scanf("%d%d",&x[i],&y[i]);

	/*
		    / a b c \
		A = | d e f |
			\ 0 0 1 /
	*/
	lint a,b,c,d,e,f;
	puts("? 0 0");
	fflush(stdout);
	scanf("%lld%lld",&c,&f);
	puts("? 1 0");
	fflush(stdout);
	scanf("%lld%lld",&a,&d);
	a-=c; d-=f;
	puts("? 0 1");
	fflush(stdout);
	scanf("%lld%lld",&b,&e);
	b-=c; e-=f;

	puts("!");
	rep(i,n) printf("%lld %lld\n",a*x[i]+b*y[i]+c,d*x[i]+e*y[i]+f);
	fflush(stdout);

	return 0;
}
0