結果
| 問題 |
No.1429 Simple Dowsing
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-03-16 19:58:27 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 24 ms / 2,000 ms |
| コード長 | 551 bytes |
| コンパイル時間 | 2,018 ms |
| コンパイル使用メモリ | 194,320 KB |
| 最終ジャッジ日時 | 2025-01-19 17:37:18 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
return (ull)rng() % B;
}
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
cout << "? 0 0" << endl;
int d; cin >> d;
cout << "? 100 0" << endl;
int dd; cin >> dd;
for(int i=0;i<=100;i++){
for(int j=0;j<=100;j++){
if(i*i+j*j==d and (100-i)*(100-i)+j*j==dd){
cout << "! " << i << " " << j << endl;
return 0;
}
}
}
}