結果

問題 No.2886 Milk
ユーザー ImTabooImTaboo
提出日時 2024-09-16 15:44:33
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 11,373 ms
コンパイル使用メモリ 420,492 KB
実行使用メモリ 49,792 KB
最終ジャッジ日時 2024-09-16 15:45:03
合計ジャッジ時間 18,910 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 249 ms
49,516 KB
testcase_01 AC 248 ms
49,392 KB
testcase_02 AC 249 ms
49,508 KB
testcase_03 AC 253 ms
49,492 KB
testcase_04 AC 255 ms
49,732 KB
testcase_05 AC 267 ms
49,544 KB
testcase_06 AC 253 ms
49,404 KB
testcase_07 AC 254 ms
49,676 KB
testcase_08 AC 250 ms
49,460 KB
testcase_09 AC 255 ms
49,728 KB
testcase_10 AC 247 ms
49,784 KB
testcase_11 AC 250 ms
49,388 KB
testcase_12 AC 257 ms
49,636 KB
testcase_13 AC 255 ms
49,620 KB
testcase_14 AC 255 ms
49,792 KB
testcase_15 AC 254 ms
49,788 KB
testcase_16 AC 263 ms
49,496 KB
testcase_17 AC 254 ms
49,520 KB
testcase_18 AC 253 ms
49,516 KB
testcase_19 AC 252 ms
49,680 KB
testcase_20 AC 259 ms
49,624 KB
testcase_21 AC 253 ms
49,764 KB
testcase_22 AC 253 ms
49,508 KB
testcase_23 AC 257 ms
49,744 KB
testcase_24 AC 260 ms
49,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val d = readln().toInt()
    if ( d <= 100){
        println("Milk")
    } else println("Difficult")
}
0