結果

問題 No.138 化石のバージョン
ユーザー yo-kondoyo-kondo
提出日時 2018-03-25 22:14:33
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 809 bytes
コンパイル時間 12,152 ms
コンパイル使用メモリ 431,992 KB
実行使用メモリ 52,052 KB
最終ジャッジ日時 2024-11-20 15:11:25
合計ジャッジ時間 23,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
51,644 KB
testcase_01 AC 294 ms
51,728 KB
testcase_02 AC 293 ms
51,604 KB
testcase_03 AC 298 ms
51,508 KB
testcase_04 AC 296 ms
51,800 KB
testcase_05 AC 304 ms
51,612 KB
testcase_06 AC 296 ms
51,768 KB
testcase_07 AC 296 ms
51,456 KB
testcase_08 AC 301 ms
51,908 KB
testcase_09 AC 303 ms
51,712 KB
testcase_10 AC 294 ms
51,628 KB
testcase_11 AC 291 ms
51,468 KB
testcase_12 AC 292 ms
51,680 KB
testcase_13 AC 298 ms
51,872 KB
testcase_14 AC 292 ms
51,916 KB
testcase_15 AC 287 ms
51,804 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 306 ms
51,752 KB
testcase_20 AC 286 ms
51,672 KB
testcase_21 RE -
testcase_22 AC 288 ms
51,500 KB
testcase_23 AC 291 ms
51,800 KB
testcase_24 AC 286 ms
51,840 KB
testcase_25 AC 292 ms
51,736 KB
testcase_26 AC 287 ms
51,640 KB
testcase_27 AC 290 ms
51,612 KB
testcase_28 AC 284 ms
51,612 KB
testcase_29 AC 286 ms
51,868 KB
testcase_30 AC 296 ms
51,628 KB
testcase_31 AC 292 ms
51,756 KB
testcase_32 AC 298 ms
51,800 KB
testcase_33 AC 295 ms
51,844 KB
testcase_34 AC 288 ms
51,732 KB
testcase_35 AC 295 ms
51,604 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package yukicoder.no138

/**
 * エントリポイント
 */
fun main(args: Array<String>) {
    val in1 = readLine()
    val in2 = readLine()
    print(fossilVersion(in1, in2))
}

/**
 * 対象のバージョンか化石のバージョンかどうかを返します。
 * @param fossil 化石のバージョン
 * @param targetVer 対象のバージョン
 */
fun fossilVersion(fossil: String?, targetVer: String?): String {
    if (fossil == null || targetVer == null) {
        return ""
    }
    val oldVer = fossil.split(".").map { it.toInt() }
    val newVer = targetVer.split(".").map { it.toInt() }

    for (i in 0..oldVer.size) {
        if (oldVer[i] < newVer[i]) {
            return "NO"
        }
        if (oldVer[i] > newVer[i]) {
            return "YES"
        }
    }
    return "YES"
}
0