結果

問題 No.1429 Simple Dowsing
ユーザー rogi52rogi52
提出日時 2022-09-27 20:14:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 787 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 206,852 KB
実行使用メモリ 24,336 KB
平均クエリ数 3.00
最終ジャッジ日時 2023-08-24 04:03:09
合計ジャッジ時間 4,124 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
24,336 KB
testcase_01 AC 25 ms
24,264 KB
testcase_02 AC 24 ms
23,652 KB
testcase_03 AC 25 ms
24,024 KB
testcase_04 AC 24 ms
23,964 KB
testcase_05 AC 26 ms
24,024 KB
testcase_06 AC 24 ms
23,508 KB
testcase_07 AC 24 ms
24,336 KB
testcase_08 AC 24 ms
24,024 KB
testcase_09 AC 24 ms
23,628 KB
testcase_10 AC 25 ms
23,400 KB
testcase_11 AC 27 ms
23,676 KB
testcase_12 AC 24 ms
23,364 KB
testcase_13 AC 24 ms
23,496 KB
testcase_14 AC 25 ms
24,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    cout << "?" << " " << 0 << " " << 0 << endl; cout.flush();
    int d1; cin >> d1;
    vector<pair<int,int>> ps;
    for(int x = 0; x <= 100; x++) {
        for(int y = 0; y <= 100; y++) {
            if(x * x + y * y == d1) {
                ps.push_back({x, y});
            }
        }
    }
    sort(ps.begin(), ps.end());
    auto [p, q] = ps.back();
    cout << "?" << " " << p << " " << q << endl; cout.flush();
    int d2; cin >> d2;
    for(auto [x, y] : ps) if((x - p) * (x - p) + (y - q) * (y - q) == d2) {
        cout << "!" << " " << x << " " << y << endl; cout.flush();
        break;
    }
}
0