結果

問題 No.2842 Birthday
ユーザー kyotoku1483
提出日時 2025-03-25 17:05:37
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 14,201 ms
コンパイル使用メモリ 401,668 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2025-03-25 17:06:07
合計ジャッジ時間 15,945 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 8 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused)]
use proconio::{input, marker::Chars};

fn main() {
    input! {
        m: i32,
        d: i32,
    }
    if m >= 8 && d >= 22 {
        println!("24")
    } else {
        println!("23")
    }
}
0