結果

問題 No.2886 Milk
ユーザー Haniwa
提出日時 2025-10-11 20:41:10
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 164 bytes
コンパイル時間 10,579 ms
コンパイル使用メモリ 401,868 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-10-11 20:41:24
合計ジャッジ時間 11,823 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
	input! {
		d: usize,
	}
	
	let ans = if d <= 100 {
        "Milk"
    } else {
        "Difficult"
    };

	println!("{ans}");
}
0