結果
問題 |
No.2842 Birthday
|
ユーザー |
|
提出日時 | 2025-03-25 17:08:11 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 224 bytes |
コンパイル時間 | 12,627 ms |
コンパイル使用メモリ | 402,036 KB |
実行使用メモリ | 7,324 KB |
最終ジャッジ日時 | 2025-03-25 17:08:25 |
合計ジャッジ時間 | 13,511 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
#[allow(unused)] use proconio::{input, marker::Chars}; fn main() { input! { m: i32, d: i32, } if m > 8 || (m == 8 && d >= 22) { println!("24") } else { println!("23") } }