結果

問題 No.471 直列回転機
ユーザー KlayKlay
提出日時 2017-05-10 21:19:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 466 ms / 3,141 ms
コード長 714 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 54,872 KB
実行使用メモリ 25,580 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:41:20
合計ジャッジ時間 15,692 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
24,452 KB
testcase_01 AC 20 ms
25,580 KB
testcase_02 AC 19 ms
25,196 KB
testcase_03 AC 19 ms
25,196 KB
testcase_04 AC 19 ms
25,180 KB
testcase_05 AC 21 ms
25,196 KB
testcase_06 AC 20 ms
25,436 KB
testcase_07 AC 23 ms
24,812 KB
testcase_08 AC 66 ms
24,812 KB
testcase_09 AC 66 ms
24,812 KB
testcase_10 AC 50 ms
25,196 KB
testcase_11 AC 192 ms
24,812 KB
testcase_12 AC 370 ms
25,220 KB
testcase_13 AC 383 ms
25,220 KB
testcase_14 AC 415 ms
24,836 KB
testcase_15 AC 373 ms
24,580 KB
testcase_16 AC 22 ms
24,824 KB
testcase_17 AC 21 ms
24,812 KB
testcase_18 AC 18 ms
25,068 KB
testcase_19 AC 20 ms
25,196 KB
testcase_20 AC 461 ms
24,568 KB
testcase_21 AC 90 ms
25,208 KB
testcase_22 AC 383 ms
24,824 KB
testcase_23 AC 367 ms
25,080 KB
testcase_24 AC 209 ms
25,196 KB
testcase_25 AC 78 ms
25,208 KB
testcase_26 AC 431 ms
25,080 KB
testcase_27 AC 222 ms
24,568 KB
testcase_28 AC 253 ms
24,824 KB
testcase_29 AC 291 ms
25,076 KB
testcase_30 AC 110 ms
24,824 KB
testcase_31 AC 424 ms
25,208 KB
testcase_32 AC 373 ms
24,824 KB
testcase_33 AC 286 ms
24,568 KB
testcase_34 AC 452 ms
25,208 KB
testcase_35 AC 107 ms
24,952 KB
testcase_36 AC 183 ms
25,080 KB
testcase_37 AC 55 ms
25,196 KB
testcase_38 AC 93 ms
24,824 KB
testcase_39 AC 138 ms
24,824 KB
testcase_40 AC 300 ms
24,568 KB
testcase_41 AC 466 ms
24,824 KB
testcase_42 AC 285 ms
24,668 KB
testcase_43 AC 402 ms
24,824 KB
testcase_44 AC 59 ms
25,208 KB
testcase_45 AC 282 ms
24,824 KB
testcase_46 AC 320 ms
25,208 KB
testcase_47 AC 413 ms
25,208 KB
testcase_48 AC 352 ms
25,208 KB
testcase_49 AC 352 ms
24,952 KB
testcase_50 AC 402 ms
24,824 KB
testcase_51 AC 163 ms
24,440 KB
testcase_52 AC 25 ms
25,196 KB
testcase_53 AC 24 ms
25,196 KB
testcase_54 AC 21 ms
24,812 KB
testcase_55 AC 110 ms
24,556 KB
testcase_56 AC 90 ms
25,068 KB
testcase_57 AC 66 ms
24,812 KB
testcase_58 AC 45 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main(void)
{
	long long M;
	
	std::cin >> M;
	
	long long x[M];
	long long y[M];
	
	for(long long i = 0; i < M; i ++)
	{
		std::cin >> x[i] >> y[i];
	}

	long long a, b, c, d, e, f, buff_x, buff_y;
	
	std::cout << "? 0 0" << std::endl;
	std::cin >> c >> f;
	
	std::cout << "? 0 1" << std::endl;
	std::cin >> buff_x >> buff_y;
	b = buff_x - c;
	e = buff_y - f;
	
	std::cout << "? 1 0" << std::endl;
	std::cin >> buff_x >> buff_y;
	a = buff_x - c;
	d = buff_y - f;
	
	std::cout << "!" << std::endl;
	
	for(long long i = 0; i < M; i ++)
	{
		buff_x = a * x[i] + b * y[i] + c;
		buff_y = d * x[i] + e * y[i] + f;
	
		std::cout << buff_x << " " << buff_y << std::endl;
	}

	return 0;
}








0