結果
| 問題 | No.48 ロボットの操縦 |
| コンテスト | |
| ユーザー |
Maricom_tkg
|
| 提出日時 | 2018-10-24 18:15:51 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 624 bytes |
| コンパイル時間 | 12,483 ms |
| コンパイル使用メモリ | 401,152 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-19 05:33:41 |
| 合計ジャッジ時間 | 13,955 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 |
ソースコード
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 mut n_move = x.abs() / l + y.abs() / l;
if x % l != 0 { n_move += 1; }
if y % l != 0 { n_move += 1; }
println!("{}", n_rotate + n_move);
}
Maricom_tkg