結果

問題 No.138 化石のバージョン
ユーザー komkomhkomkomh
提出日時 2019-06-07 12:58:31
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 325 ms / 5,000 ms
コード長 426 bytes
コンパイル時間 11,699 ms
コンパイル使用メモリ 433,228 KB
実行使用メモリ 51,984 KB
最終ジャッジ日時 2024-11-20 18:49:21
合計ジャッジ時間 24,696 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
51,584 KB
testcase_01 AC 317 ms
51,732 KB
testcase_02 AC 316 ms
51,928 KB
testcase_03 AC 316 ms
51,596 KB
testcase_04 AC 313 ms
51,940 KB
testcase_05 AC 320 ms
51,552 KB
testcase_06 AC 319 ms
51,820 KB
testcase_07 AC 316 ms
51,864 KB
testcase_08 AC 317 ms
51,816 KB
testcase_09 AC 317 ms
51,592 KB
testcase_10 AC 315 ms
51,696 KB
testcase_11 AC 314 ms
51,820 KB
testcase_12 AC 312 ms
51,940 KB
testcase_13 AC 314 ms
51,940 KB
testcase_14 AC 319 ms
51,672 KB
testcase_15 AC 313 ms
51,880 KB
testcase_16 AC 315 ms
51,468 KB
testcase_17 AC 314 ms
51,596 KB
testcase_18 AC 309 ms
51,768 KB
testcase_19 AC 314 ms
51,932 KB
testcase_20 AC 325 ms
51,604 KB
testcase_21 AC 314 ms
51,748 KB
testcase_22 AC 316 ms
51,576 KB
testcase_23 AC 311 ms
51,800 KB
testcase_24 AC 312 ms
51,648 KB
testcase_25 AC 315 ms
51,556 KB
testcase_26 AC 314 ms
51,596 KB
testcase_27 AC 316 ms
51,872 KB
testcase_28 AC 314 ms
51,576 KB
testcase_29 AC 312 ms
51,648 KB
testcase_30 AC 315 ms
51,816 KB
testcase_31 AC 316 ms
51,732 KB
testcase_32 AC 316 ms
51,584 KB
testcase_33 AC 311 ms
51,936 KB
testcase_34 AC 315 ms
51,500 KB
testcase_35 AC 315 ms
51,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val kasekiVersion = readLine()!!.split(".").map(String::toInt)
    val checkVersion = readLine()!!.split(".").map(String::toInt)

    for (i in 0 until 3) {
        if (checkVersion[i] < kasekiVersion[i]) {
            println("YES")
            return
        } else if (checkVersion[i] > kasekiVersion[i]){
            println("NO")
            return
        }
    }
    println("YES")
}
0