結果

問題 No.48 ロボットの操縦
ユーザー Yohei IguchiYohei Iguchi
提出日時 2022-05-16 23:23:06
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 672 bytes
コンパイル時間 15,786 ms
コンパイル使用メモリ 389,924 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-14 16:38:18
合計ジャッジ時間 14,927 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: variable `X` should have a snake case name
  --> src/main.rs:15:9
   |
15 |         X: i64,
   |         ^ help: convert the identifier to snake case (notice the capitalization): `x`
   |
   = note: `#[warn(non_snake_case)]` on by default

warning: variable `Y` should have a snake case name
  --> src/main.rs:16:9
   |
16 |         Y: i64,
   |         ^ help: convert the identifier to snake case (notice the capitalization): `y`

warning: variable `L` should have a snake case name
  --> src/main.rs:17:9
   |
17 |         L: u64,
   |         ^ help: convert the identifier to snake case: `l`

ソースコード

diff #

#![allow(unused_imports)]

use proconio::{
    fastout, input,
    marker::{Bytes, Chars, Isize1, Usize1},
    source::line::LineSource,
};
use std::cmp::{max, min, Ordering, Reverse};
use std::collections::*;
use std::{f64, i128, i32, i64, u128, u32, u64};

#[fastout]
fn main() {
    input! {
        X: i64,
        Y: i64,
        L: u64,
    }
    // let mut ans = 0u64;
    let x_count = (X.abs() as u64 + L - 1) / L;
    let y_count = (Y.abs() as u64 + L - 1) / L;
    let mut ans = 0;
    if (X > 0 && Y == 0) || (X == 0 && Y > 0) || (X == 0 && Y < 0) {
        ans += 1;
    } else if X < 0 {
        ans += 2
    }

    println!("{}", x_count + y_count + ans)
}
0