結果
問題 | No.1230 Hall_and_me |
ユーザー | ixTL255 |
提出日時 | 2023-01-12 23:34:59 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 431 bytes |
コンパイル時間 | 14,846 ms |
コンパイル使用メモリ | 378,240 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 15:59:00 |
合計ジャッジ時間 | 14,304 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 36 |
ソースコード
fn main() { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); let mut itr = s.trim().split_whitespace(); let p: usize = itr.next().unwrap().parse().unwrap(); let q: usize = itr.next().unwrap().parse().unwrap(); let r: usize = itr.next().unwrap().parse().unwrap(); let m = std::cmp::min(p, std::cmp::min(q, r)) as f64; let s = (p + q + r) as f64; println!("{}", 1. - m / s); }