結果
問題 | No.48 ロボットの操縦 |
ユーザー |
![]() |
提出日時 | 2018-10-24 18:08:04 |
言語 | Rust (1.83.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 566 bytes |
コンパイル時間 | 12,599 ms |
コンパイル使用メモリ | 384,008 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-11-19 05:32:50 |
合計ジャッジ時間 | 13,545 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 WA * 2 |
ソースコード
use std::io::Read; fn main() { let mut buf = String::new(); std::io::stdin().read_to_string(&mut buf).unwrap(); let mut iter = buf.split_whitespace(); let x: isize = iter.next().unwrap().parse().unwrap(); let y: isize = iter.next().unwrap().parse().unwrap(); let l: isize = iter.next().unwrap().parse().unwrap(); let n_rotate = if y < 0 { 2 } else if x != 0 { 1 } else { 0 }; let n_move = (x.abs() - 1) / l + (y.abs() - 1) / l + 2; println!("{}", n_rotate + n_move); }