結果

問題 No.3112 Decrement or Mod Game
ユーザー zer0-star
提出日時 2025-04-19 01:00:51
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 903 bytes
コンパイル時間 13,983 ms
コンパイル使用メモリ 403,488 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-04-19 01:01:07
合計ジャッジ時間 14,685 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 65
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: constant `DIRS` is never used
 --> src/main.rs:3:7
  |
3 | const DIRS: [(isize, isize); 4] = [(0, 1), (1, 0), (0, -1), (-1, 0)];
  |       ^^^^
  |
  = note: `#[warn(dead_code)]` on by default

warning: trait `OrdExt` is never used
 --> src/main.rs:5:7
  |
5 | trait OrdExt {
  |       ^^^^^^

warning: variable `A` should have a snake case name
  --> src/main.rs:33:9
   |
33 |         A: usize,
   |         ^ help: convert the identifier to snake case: `a`
   |
   = note: `#[warn(non_snake_case)]` on by default

warning: variable `B` should have a snake case name
  --> src/main.rs:34:9
   |
34 |         B: usize,
   |         ^ help: convert the identifier to snake case: `b`

ソースコード

diff #

use proconio::{fastout, input};

const DIRS: [(isize, isize); 4] = [(0, 1), (1, 0), (0, -1), (-1, 0)];

trait OrdExt {
    fn chmax(&mut self, other: Self) -> bool;
    fn chmin(&mut self, other: Self) -> bool;
}

impl<T: Ord> OrdExt for T {
    fn chmax(&mut self, other: Self) -> bool {
        if *self < other {
            *self = other;
            true
        } else {
            false
        }
    }

    fn chmin(&mut self, other: Self) -> bool {
        if *self > other {
            *self = other;
            true
        } else {
            false
        }
    }
}

#[fastout]
fn main() {
    input! {
        A: usize,
        B: usize,
    }

    if A == 1 {
        println!("Alice");
    } else if A == B {
        println!("Alice");
    } else if A == B + 1 {
        println!("Bob");
    } else if A > B {
        println!("Alice");
    } else {
        println!("Bob");
    }
}
0