結果

問題 No.3108 Luke or Bishop
ユーザー rhoo
提出日時 2025-04-18 20:14:21
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 11,423 ms
コンパイル使用メモリ 387,956 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-04-18 20:14:37
合計ジャッジ時間 12,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(unused_imports,non_snake_case,dead_code)]
use std::{cmp::Reverse as Rev,collections::*,iter::*};
use proconio::{marker::*,*};


#[fastout]
fn main(){
    input!{
        x:i64,
        y:i64,
    }
    if (x,y)==(0,0){
        println!("0");
        return;
    }
    if x==0 || y==0 || x==y || x==-y{
        println!("1");
        return;
    }
    println!("2");
}
0