結果

問題 No.1429 Simple Dowsing
ユーザー ⁣
提出日時 2024-06-19 15:59:06
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 12,624 ms
コンパイル使用メモリ 389,668 KB
実行使用メモリ 25,476 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-06-19 15:59:22
合計ジャッジ時間 14,929 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,824 KB
testcase_01 AC 21 ms
24,836 KB
testcase_02 AC 20 ms
24,580 KB
testcase_03 AC 21 ms
24,836 KB
testcase_04 AC 20 ms
24,836 KB
testcase_05 AC 21 ms
24,836 KB
testcase_06 AC 21 ms
24,580 KB
testcase_07 AC 23 ms
24,836 KB
testcase_08 AC 22 ms
24,836 KB
testcase_09 AC 21 ms
25,476 KB
testcase_10 AC 21 ms
25,220 KB
testcase_11 AC 21 ms
25,220 KB
testcase_12 AC 21 ms
24,580 KB
testcase_13 AC 21 ms
24,452 KB
testcase_14 AC 21 ms
24,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
	let mut s = String::new();
	println!("? 0 0");
	std::io::stdin().read_line(&mut s).ok();
	println!("? 0 100");
	std::io::stdin().read_line(&mut s).ok();
	let n: Vec<f64> = s.split_whitespace().flat_map(str::parse).collect();
	let y = (n[0] - n[1] + 10000.0) / 200.0;
	println!("! {} {}", (n[0] - y * y).sqrt().round(), y.round())
}
0