結果

問題 No.138 化石のバージョン
ユーザー yo-kondoyo-kondo
提出日時 2018-03-25 22:14:33
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 809 bytes
コンパイル時間 11,931 ms
コンパイル使用メモリ 434,064 KB
実行使用メモリ 57,020 KB
最終ジャッジ日時 2024-04-30 17:53:49
合計ジャッジ時間 21,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
56,920 KB
testcase_01 AC 281 ms
56,864 KB
testcase_02 AC 286 ms
56,808 KB
testcase_03 AC 287 ms
56,984 KB
testcase_04 AC 316 ms
56,956 KB
testcase_05 AC 292 ms
56,840 KB
testcase_06 AC 282 ms
56,948 KB
testcase_07 AC 264 ms
56,804 KB
testcase_08 AC 272 ms
56,856 KB
testcase_09 AC 264 ms
56,960 KB
testcase_10 AC 267 ms
56,832 KB
testcase_11 AC 263 ms
56,972 KB
testcase_12 AC 265 ms
56,860 KB
testcase_13 AC 315 ms
56,956 KB
testcase_14 AC 265 ms
56,956 KB
testcase_15 AC 271 ms
56,824 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 273 ms
56,796 KB
testcase_20 AC 265 ms
56,836 KB
testcase_21 RE -
testcase_22 AC 281 ms
56,900 KB
testcase_23 AC 264 ms
56,796 KB
testcase_24 AC 270 ms
56,992 KB
testcase_25 AC 272 ms
56,932 KB
testcase_26 AC 276 ms
56,872 KB
testcase_27 AC 269 ms
56,908 KB
testcase_28 AC 268 ms
56,808 KB
testcase_29 AC 285 ms
56,800 KB
testcase_30 AC 268 ms
56,952 KB
testcase_31 AC 265 ms
56,956 KB
testcase_32 AC 266 ms
56,952 KB
testcase_33 AC 269 ms
56,916 KB
testcase_34 AC 260 ms
56,864 KB
testcase_35 AC 265 ms
56,920 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