結果

問題 No.138 化石のバージョン
ユーザー yo-kondoyo-kondo
提出日時 2018-03-25 22:16:26
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 322 ms / 5,000 ms
コード長 814 bytes
コンパイル時間 11,430 ms
コンパイル使用メモリ 435,980 KB
実行使用メモリ 57,088 KB
最終ジャッジ日時 2024-11-20 14:56:03
合計ジャッジ時間 24,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
56,876 KB
testcase_01 AC 318 ms
56,752 KB
testcase_02 AC 312 ms
57,088 KB
testcase_03 AC 318 ms
56,916 KB
testcase_04 AC 317 ms
56,896 KB
testcase_05 AC 314 ms
56,916 KB
testcase_06 AC 317 ms
56,932 KB
testcase_07 AC 318 ms
56,960 KB
testcase_08 AC 317 ms
56,856 KB
testcase_09 AC 313 ms
56,832 KB
testcase_10 AC 314 ms
56,864 KB
testcase_11 AC 317 ms
57,012 KB
testcase_12 AC 313 ms
56,876 KB
testcase_13 AC 319 ms
56,856 KB
testcase_14 AC 313 ms
56,940 KB
testcase_15 AC 313 ms
56,888 KB
testcase_16 AC 317 ms
56,932 KB
testcase_17 AC 313 ms
56,844 KB
testcase_18 AC 313 ms
56,988 KB
testcase_19 AC 319 ms
56,952 KB
testcase_20 AC 316 ms
56,904 KB
testcase_21 AC 312 ms
56,844 KB
testcase_22 AC 315 ms
56,836 KB
testcase_23 AC 313 ms
56,964 KB
testcase_24 AC 316 ms
56,948 KB
testcase_25 AC 317 ms
56,872 KB
testcase_26 AC 322 ms
56,932 KB
testcase_27 AC 315 ms
56,956 KB
testcase_28 AC 314 ms
56,956 KB
testcase_29 AC 313 ms
56,860 KB
testcase_30 AC 314 ms
56,844 KB
testcase_31 AC 322 ms
56,880 KB
testcase_32 AC 318 ms
56,940 KB
testcase_33 AC 316 ms
57,008 KB
testcase_34 AC 315 ms
56,876 KB
testcase_35 AC 316 ms
56,968 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