結果

問題 No.138 化石のバージョン
ユーザー mura40424mura40424
提出日時 2015-05-31 16:07:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 11,410 ms
コンパイル使用メモリ 438,688 KB
実行使用メモリ 57,036 KB
最終ジャッジ日時 2024-11-19 14:16:40
合計ジャッジ時間 23,515 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
56,768 KB
testcase_01 AC 288 ms
57,024 KB
testcase_02 AC 284 ms
56,948 KB
testcase_03 AC 283 ms
56,880 KB
testcase_04 AC 287 ms
56,856 KB
testcase_05 AC 289 ms
56,832 KB
testcase_06 AC 289 ms
56,872 KB
testcase_07 AC 288 ms
56,856 KB
testcase_08 AC 282 ms
56,816 KB
testcase_09 AC 291 ms
56,896 KB
testcase_10 AC 282 ms
56,864 KB
testcase_11 AC 296 ms
56,844 KB
testcase_12 AC 278 ms
56,848 KB
testcase_13 AC 277 ms
57,024 KB
testcase_14 AC 280 ms
56,940 KB
testcase_15 AC 282 ms
56,804 KB
testcase_16 AC 276 ms
56,856 KB
testcase_17 AC 277 ms
56,752 KB
testcase_18 AC 278 ms
56,768 KB
testcase_19 AC 280 ms
57,012 KB
testcase_20 AC 283 ms
56,836 KB
testcase_21 AC 284 ms
56,812 KB
testcase_22 AC 276 ms
56,828 KB
testcase_23 AC 286 ms
56,860 KB
testcase_24 AC 281 ms
56,996 KB
testcase_25 AC 281 ms
56,836 KB
testcase_26 AC 276 ms
57,036 KB
testcase_27 AC 278 ms
57,036 KB
testcase_28 AC 276 ms
56,976 KB
testcase_29 AC 276 ms
56,864 KB
testcase_30 AC 282 ms
56,956 KB
testcase_31 AC 292 ms
56,828 KB
testcase_32 AC 285 ms
56,852 KB
testcase_33 AC 279 ms
56,940 KB
testcase_34 AC 288 ms
56,876 KB
testcase_35 AC 283 ms
56,908 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args : Array<String>){
         ^

ソースコード

diff #

import java.lang.Math

fun main(args : Array<String>){
    var fossil = readLine()!!.split('.').map { it.toInt() }
    var current = readLine()!!.split('.').map { it.toInt() }
    var f_sum = 0
    var c_sum = 0

    for(i in 0..2) {
        f_sum += fossil[i]*Math.pow(1000.0, (2 - i).toDouble()).toInt()
        c_sum += current[i] * Math.pow(1000.0,(2 - i).toDouble()).toInt()
    }
    if(c_sum > f_sum)
        println("NO")
    else
        println("YES")
}
0