結果
問題 | No.1178 Can you draw a Circle? |
ユーザー | ixTL255 |
提出日時 | 2023-01-08 21:55:30 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 536 bytes |
コンパイル時間 | 11,914 ms |
コンパイル使用メモリ | 394,672 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-09 12:36:22 |
合計ジャッジ時間 | 13,015 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
コンパイルメッセージ
warning: unused variable: `b` --> src/main.rs:6:9 | 6 | let b: f64 = itr.next().unwrap().parse().unwrap(); | ^ help: if this is intentional, prefix it with an underscore: `_b` | = note: `#[warn(unused_variables)]` on by default
ソースコード
fn main() { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); let mut itr = s.trim().split_whitespace(); let a: f64 = itr.next().unwrap().parse().unwrap(); let b: f64 = itr.next().unwrap().parse().unwrap(); let c: f64 = itr.next().unwrap().parse().unwrap(); let d: f64 = itr.next().unwrap().parse().unwrap(); let e: f64 = itr.next().unwrap().parse().unwrap(); let f: f64 = itr.next().unwrap().parse().unwrap(); println!("{}", ((c * c + d * d) / (4. * a * a) - e + f).sqrt()); }