結果
問題 | No.471 直列回転機 |
ユーザー |
![]() |
提出日時 | 2016-12-21 00:09:59 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 303 ms / 3,141 ms |
コード長 | 1,412 bytes |
コンパイル時間 | 2,511 ms |
コンパイル使用メモリ | 157,556 KB |
実行使用メモリ | 25,592 KB |
平均クエリ数 | 19589.39 |
最終ジャッジ日時 | 2024-06-11 10:16:32 |
合計ジャッジ時間 | 13,624 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 58 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:38:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 38 | scanf("%d",&m); | ~~~~~^~~~~~~~~ main.cpp:39:16: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 39 | REP(i,m)scanf("%d%d",&ps[i].first, &ps[i].second); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:45:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 45 | scanf("%d%d",&x,&y); | ~~~~~^~~~~~~~~~~~~~ main.cpp:49:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 49 | scanf("%d%d",&x2,&y2); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:53:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 53 | scanf("%d%d",&x3,&y3); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>using namespace std;typedef long long ll;typedef vector<int> vi;typedef vector<ll> vl;typedef pair<int,int> pii;typedef pair<ll,ll> pll;typedef int _loop_int;#define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i)#define FOR(i,a,b) for(_loop_int i=(_loop_int)(a);i<(_loop_int)(b);++i)#define FORR(i,a,b) for(_loop_int i=(_loop_int)(b)-1;i>=(_loop_int)(a);--i)#define DEBUG(x) cout<<#x<<": "<<x<<endl#define DEBUG_VEC(v) cout<<#v<<":";REP(i,v.size())cout<<" "<<v[i];cout<<endl#define ALL(a) (a).begin(),(a).end()#define CHMIN(a,b) a=min((a),(b))#define CHMAX(a,b) a=max((a),(b))// modconst ll MOD = 1000000007ll;#define FIX(a) ((a)%MOD+MOD)%MOD// floatingtypedef double Real;const Real EPS = 1e-11;#define EQ0(x) (abs(x)<EPS)#define EQ(a,b) (abs(a-b)<EPS)typedef complex<Real> P;int m;pii ps[52525];int main(){scanf("%d",&m);REP(i,m)scanf("%d%d",&ps[i].first, &ps[i].second);// queryint a,b,c,d,e,f;{int x,y,x2,y2,x3,y3;printf("? 0 0\n");fflush(stdout);scanf("%d%d",&x,&y);c = x;f = y;printf("? 1 0\n");fflush(stdout);scanf("%d%d",&x2,&y2);a = x2-x;d = y2-y;printf("? 0 1\n");fflush(stdout);scanf("%d%d",&x3,&y3);b = x3-x;e = y3-y;}// okputs("!");REP(i,m){printf("%d %d\n",a*ps[i].first+b*ps[i].second+c,d*ps[i].first+e*ps[i].second+f);}return 0;}