結果
問題 |
No.1429 Simple Dowsing
|
ユーザー |
|
提出日時 | 2022-09-27 20:14:30 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 34 ms / 2,000 ms |
コード長 | 787 bytes |
コンパイル時間 | 2,122 ms |
コンパイル使用メモリ | 201,712 KB |
最終ジャッジ日時 | 2025-02-07 17:27:26 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 |
ソースコード
#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; } }