結果

問題 No.1429 Simple Dowsing
ユーザー rogi52rogi52
提出日時 2022-09-27 20:14:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 787 bytes
コンパイル時間 1,957 ms
コンパイル使用メモリ 209,812 KB
実行使用メモリ 25,592 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-06-02 01:13:05
合計ジャッジ時間 3,406 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
24,808 KB
testcase_01 AC 19 ms
25,592 KB
testcase_02 AC 18 ms
25,208 KB
testcase_03 AC 18 ms
25,064 KB
testcase_04 AC 19 ms
25,208 KB
testcase_05 AC 18 ms
24,952 KB
testcase_06 AC 18 ms
25,464 KB
testcase_07 AC 18 ms
24,824 KB
testcase_08 AC 19 ms
24,952 KB
testcase_09 AC 20 ms
24,940 KB
testcase_10 AC 19 ms
24,952 KB
testcase_11 AC 19 ms
24,952 KB
testcase_12 AC 19 ms
25,180 KB
testcase_13 AC 18 ms
25,208 KB
testcase_14 AC 19 ms
25,592 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