結果

問題 No.138 化石のバージョン
ユーザー yo-kondoyo-kondo
提出日時 2018-03-25 22:16:26
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 285 ms / 5,000 ms
コード長 814 bytes
コンパイル時間 12,034 ms
コンパイル使用メモリ 431,672 KB
実行使用メモリ 57,020 KB
最終ジャッジ日時 2024-04-30 17:38:39
合計ジャッジ時間 20,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
56,824 KB
testcase_01 AC 270 ms
56,900 KB
testcase_02 AC 266 ms
56,836 KB
testcase_03 AC 267 ms
56,824 KB
testcase_04 AC 271 ms
56,916 KB
testcase_05 AC 273 ms
56,868 KB
testcase_06 AC 267 ms
56,916 KB
testcase_07 AC 268 ms
56,904 KB
testcase_08 AC 268 ms
56,932 KB
testcase_09 AC 276 ms
56,952 KB
testcase_10 AC 273 ms
56,848 KB
testcase_11 AC 275 ms
56,924 KB
testcase_12 AC 271 ms
56,952 KB
testcase_13 AC 263 ms
56,884 KB
testcase_14 AC 264 ms
56,964 KB
testcase_15 AC 271 ms
56,868 KB
testcase_16 AC 266 ms
56,932 KB
testcase_17 AC 265 ms
56,836 KB
testcase_18 AC 268 ms
56,924 KB
testcase_19 AC 281 ms
56,844 KB
testcase_20 AC 285 ms
56,900 KB
testcase_21 AC 280 ms
56,912 KB
testcase_22 AC 273 ms
56,840 KB
testcase_23 AC 278 ms
56,816 KB
testcase_24 AC 268 ms
56,920 KB
testcase_25 AC 273 ms
57,020 KB
testcase_26 AC 271 ms
56,832 KB
testcase_27 AC 271 ms
56,920 KB
testcase_28 AC 263 ms
56,940 KB
testcase_29 AC 266 ms
56,840 KB
testcase_30 AC 269 ms
56,808 KB
testcase_31 AC 278 ms
56,928 KB
testcase_32 AC 266 ms
56,828 KB
testcase_33 AC 269 ms
56,856 KB
testcase_34 AC 262 ms
56,812 KB
testcase_35 AC 266 ms
56,816 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 until oldVer.size) {
        if (oldVer[i] < newVer[i]) {
            return "NO"
        }
        if (oldVer[i] > newVer[i]) {
            return "YES"
        }
    }
    return "YES"
}
0