結果

問題 No.2886 Milk
ユーザー atcoder8atcoder8
提出日時 2024-09-13 21:23:52
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 14,955 ms
コンパイル使用メモリ 380,132 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-13 21:24:08
合計ジャッジ時間 14,164 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
        d: usize,
    }

    println!("{}", if d <= 100 { "Milk" } else { "Difficult" });
}
0