結果

問題 No.471 直列回転機
ユーザー kotatsugamekotatsugame
提出日時 2020-02-17 07:09:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 482 ms / 3,141 ms
コード長 415 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 63,360 KB
実行使用メモリ 25,580 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:44:12
合計ジャッジ時間 15,867 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
24,836 KB
testcase_01 AC 19 ms
25,196 KB
testcase_02 AC 21 ms
25,196 KB
testcase_03 AC 20 ms
25,452 KB
testcase_04 AC 20 ms
25,580 KB
testcase_05 AC 21 ms
24,812 KB
testcase_06 AC 22 ms
24,812 KB
testcase_07 AC 22 ms
25,196 KB
testcase_08 AC 57 ms
25,196 KB
testcase_09 AC 70 ms
24,812 KB
testcase_10 AC 46 ms
25,196 KB
testcase_11 AC 198 ms
24,812 KB
testcase_12 AC 389 ms
25,184 KB
testcase_13 AC 391 ms
24,836 KB
testcase_14 AC 437 ms
25,220 KB
testcase_15 AC 452 ms
24,836 KB
testcase_16 AC 26 ms
25,208 KB
testcase_17 AC 21 ms
25,196 KB
testcase_18 AC 19 ms
24,812 KB
testcase_19 AC 19 ms
25,196 KB
testcase_20 AC 482 ms
25,208 KB
testcase_21 AC 91 ms
24,824 KB
testcase_22 AC 395 ms
25,556 KB
testcase_23 AC 375 ms
24,824 KB
testcase_24 AC 221 ms
25,208 KB
testcase_25 AC 80 ms
24,824 KB
testcase_26 AC 468 ms
24,568 KB
testcase_27 AC 205 ms
25,208 KB
testcase_28 AC 252 ms
24,952 KB
testcase_29 AC 287 ms
25,080 KB
testcase_30 AC 111 ms
24,824 KB
testcase_31 AC 450 ms
24,824 KB
testcase_32 AC 374 ms
25,080 KB
testcase_33 AC 288 ms
24,824 KB
testcase_34 AC 419 ms
25,208 KB
testcase_35 AC 101 ms
25,208 KB
testcase_36 AC 186 ms
24,824 KB
testcase_37 AC 58 ms
24,812 KB
testcase_38 AC 94 ms
24,824 KB
testcase_39 AC 150 ms
25,208 KB
testcase_40 AC 318 ms
24,824 KB
testcase_41 AC 476 ms
25,208 KB
testcase_42 AC 304 ms
24,824 KB
testcase_43 AC 457 ms
24,824 KB
testcase_44 AC 56 ms
24,824 KB
testcase_45 AC 287 ms
25,196 KB
testcase_46 AC 329 ms
24,952 KB
testcase_47 AC 422 ms
24,824 KB
testcase_48 AC 352 ms
25,208 KB
testcase_49 AC 337 ms
25,208 KB
testcase_50 AC 407 ms
25,208 KB
testcase_51 AC 172 ms
25,336 KB
testcase_52 AC 23 ms
24,940 KB
testcase_53 AC 26 ms
25,196 KB
testcase_54 AC 26 ms
25,196 KB
testcase_55 AC 105 ms
24,812 KB
testcase_56 AC 88 ms
25,196 KB
testcase_57 AC 61 ms
24,812 KB
testcase_58 AC 42 ms
24,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int M;
int X[50000],Y[50000];
main()
{
	cin>>M;
	for(int i=0;i<M;i++)cin>>X[i]>>Y[i];
	cout<<"? 0 0"<<endl;
	int bx,by;cin>>bx>>by;
	cout<<"? 1 0"<<endl;
	int a1x,a1y;cin>>a1x>>a1y;a1x-=bx;a1y-=by;
	cout<<"? 0 1"<<endl;
	int a2x,a2y;cin>>a2x>>a2y;a2x-=bx;a2y-=by;
	cout<<"!"<<endl;
	for(int i=0;i<M;i++)
	{
		cout<<a1x*X[i]+a2x*Y[i]+bx<<" "<<a1y*X[i]+a2y*Y[i]+by<<endl;
	}
}
0