結果
問題 | No.1429 Simple Dowsing |
ユーザー | shiomusubi496 |
提出日時 | 2021-03-14 14:07:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 634 bytes |
コンパイル時間 | 1,782 ms |
コンパイル使用メモリ | 180,176 KB |
実行使用メモリ | 25,208 KB |
平均クエリ数 | 3.00 |
最終ジャッジ日時 | 2024-07-17 10:47:17 |
合計ジャッジ時間 | 3,258 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
24,916 KB |
testcase_01 | AC | 23 ms
24,568 KB |
testcase_02 | AC | 23 ms
24,812 KB |
testcase_03 | AC | 24 ms
24,952 KB |
testcase_04 | AC | 23 ms
25,208 KB |
testcase_05 | AC | 24 ms
25,208 KB |
testcase_06 | AC | 25 ms
24,824 KB |
testcase_07 | AC | 24 ms
25,208 KB |
testcase_08 | AC | 24 ms
24,568 KB |
testcase_09 | AC | 24 ms
24,824 KB |
testcase_10 | AC | 23 ms
24,952 KB |
testcase_11 | AC | 24 ms
24,824 KB |
testcase_12 | AC | 24 ms
24,568 KB |
testcase_13 | AC | 24 ms
24,568 KB |
testcase_14 | AC | 23 ms
24,568 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:11:17: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 11 | for(auto[a,b]:v)mp[(a-i)*(a-i)+(b-j)*(b-j)]={a,b}; | ^
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; signed main(){ puts("? 0 0");fflush(stdout); int d;scanf("%d",&d); vector<pair<int,int>>v; for(int i=0;i<=100;i++)for(int j=0;j<=100;j++)if(i*i+j*j==d)v.push_back({i,j}); for(int i=0;i<=100;i++)for(int j=0;j<=100;j++){ map<int,pair<int,int>>mp; for(auto[a,b]:v)mp[(a-i)*(a-i)+(b-j)*(b-j)]={a,b}; if(mp.size()==v.size()){ printf("? %d %d\n",i,j);fflush(stdout); int d2;scanf("%d",&d2); printf("! %d %d\n",mp[d2].first,mp[d2].second);fflush(stdout); return 0; } } }