結果

問題 No.1893 Cycle
ユーザー phspls
提出日時 2022-09-25 01:23:42
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 13,993 ms
コンパイル使用メモリ 378,644 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-22 12:37:35
合計ジャッジ時間 13,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut xy = String::new();
    std::io::stdin().read_line(&mut xy).ok();
    let xy: Vec<usize> = xy.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let x = xy[0];
    let y = xy[1];
    println!("{}", (x.max(y) + 4) % 12)
}
0