結果

問題 No.471 直列回転機
ユーザー KlayKlay
提出日時 2017-05-10 21:11:30
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 687 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 55,576 KB
実行使用メモリ 25,820 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-07-16 13:39:42
合計ジャッジ時間 28,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,964 KB
testcase_01 AC 24 ms
24,556 KB
testcase_02 AC 24 ms
24,812 KB
testcase_03 AC 23 ms
25,196 KB
testcase_04 AC 25 ms
25,324 KB
testcase_05 AC 30 ms
24,812 KB
testcase_06 AC 26 ms
24,940 KB
testcase_07 AC 29 ms
25,196 KB
testcase_08 AC 109 ms
24,940 KB
testcase_09 AC 125 ms
25,196 KB
testcase_10 AC 73 ms
25,196 KB
testcase_11 AC 372 ms
25,452 KB
testcase_12 WA -
testcase_13 AC 800 ms
24,836 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 28 ms
24,952 KB
testcase_17 AC 25 ms
24,556 KB
testcase_18 AC 24 ms
24,812 KB
testcase_19 AC 24 ms
24,940 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 778 ms
25,464 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 908 ms
24,952 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 584 ms
24,824 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 885 ms
25,208 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 103 ms
25,208 KB
testcase_38 AC 163 ms
25,208 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 935 ms
24,952 KB
testcase_42 AC 562 ms
24,952 KB
testcase_43 WA -
testcase_44 AC 78 ms
25,208 KB
testcase_45 WA -
testcase_46 AC 636 ms
24,952 KB
testcase_47 WA -
testcase_48 AC 744 ms
24,568 KB
testcase_49 AC 701 ms
24,824 KB
testcase_50 AC 836 ms
24,824 KB
testcase_51 WA -
testcase_52 AC 28 ms
25,452 KB
testcase_53 AC 30 ms
24,812 KB
testcase_54 AC 36 ms
24,940 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

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

	double 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(int 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