結果

問題 No.138 化石のバージョン
ユーザー komkomhkomkomh
提出日時 2019-06-07 11:05:44
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 276 bytes
コンパイル時間 13,595 ms
コンパイル使用メモリ 433,356 KB
実行使用メモリ 57,064 KB
最終ジャッジ日時 2024-11-20 18:47:28
合計ジャッジ時間 22,603 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
56,756 KB
testcase_01 AC 305 ms
56,792 KB
testcase_02 WA -
testcase_03 AC 306 ms
56,844 KB
testcase_04 AC 305 ms
56,840 KB
testcase_05 AC 304 ms
56,772 KB
testcase_06 AC 303 ms
56,740 KB
testcase_07 AC 300 ms
56,740 KB
testcase_08 WA -
testcase_09 AC 303 ms
56,764 KB
testcase_10 AC 303 ms
56,892 KB
testcase_11 AC 308 ms
56,752 KB
testcase_12 AC 305 ms
56,696 KB
testcase_13 WA -
testcase_14 AC 301 ms
56,716 KB
testcase_15 WA -
testcase_16 AC 302 ms
56,756 KB
testcase_17 AC 303 ms
56,856 KB
testcase_18 AC 304 ms
56,740 KB
testcase_19 AC 305 ms
56,728 KB
testcase_20 AC 304 ms
56,848 KB
testcase_21 AC 310 ms
56,728 KB
testcase_22 AC 305 ms
56,816 KB
testcase_23 AC 308 ms
56,852 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 310 ms
56,896 KB
testcase_27 AC 309 ms
56,876 KB
testcase_28 AC 306 ms
56,736 KB
testcase_29 AC 303 ms
56,864 KB
testcase_30 AC 309 ms
56,840 KB
testcase_31 AC 305 ms
56,844 KB
testcase_32 AC 308 ms
56,744 KB
testcase_33 AC 305 ms
56,728 KB
testcase_34 AC 302 ms
56,748 KB
testcase_35 AC 304 ms
56,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val kasekiVersion = readLine()!!.replace(".", "").toInt()
    val checkVersion = readLine()!!.replace(".", "").toInt()

    val ans = when(checkVersion <= kasekiVersion) {
        true -> "YES"
        false -> "NO"
    }
    println(ans)
}
0