結果
問題 | No.2407 Bouns 2.0 |
ユーザー |
|
提出日時 | 2024-05-09 13:09:26 |
言語 | Rust (1.83.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 202 bytes |
コンパイル時間 | 14,942 ms |
コンパイル使用メモリ | 391,540 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-12-16 02:32:00 |
合計ジャッジ時間 | 15,775 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 17 WA * 1 |
ソースコード
fn main() {let mut s = String::new();std::io::stdin().read_line(&mut s).ok();let n: Vec<f64> = s.split_whitespace().flat_map(str::parse).collect();println!("{}", (n[0] + n[1]) * (n[2] + 1.));}