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