結果

問題 No.138 化石のバージョン
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-02 13:46:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 377 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 13,316 ms
コンパイル使用メモリ 436,492 KB
実行使用メモリ 57,836 KB
最終ジャッジ日時 2024-11-20 11:16:15
合計ジャッジ時間 27,100 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 371 ms
57,604 KB
testcase_01 AC 366 ms
57,696 KB
testcase_02 AC 371 ms
57,592 KB
testcase_03 AC 368 ms
57,608 KB
testcase_04 AC 369 ms
57,700 KB
testcase_05 AC 376 ms
57,804 KB
testcase_06 AC 373 ms
57,596 KB
testcase_07 AC 371 ms
57,648 KB
testcase_08 AC 373 ms
57,660 KB
testcase_09 AC 368 ms
57,836 KB
testcase_10 AC 372 ms
57,648 KB
testcase_11 AC 369 ms
57,628 KB
testcase_12 AC 367 ms
57,644 KB
testcase_13 AC 367 ms
57,584 KB
testcase_14 AC 372 ms
57,524 KB
testcase_15 AC 371 ms
57,696 KB
testcase_16 AC 369 ms
57,704 KB
testcase_17 AC 371 ms
57,644 KB
testcase_18 AC 368 ms
57,632 KB
testcase_19 AC 377 ms
57,684 KB
testcase_20 AC 371 ms
57,816 KB
testcase_21 AC 369 ms
57,576 KB
testcase_22 AC 367 ms
57,768 KB
testcase_23 AC 369 ms
57,588 KB
testcase_24 AC 372 ms
57,772 KB
testcase_25 AC 374 ms
57,832 KB
testcase_26 AC 365 ms
57,764 KB
testcase_27 AC 370 ms
57,800 KB
testcase_28 AC 366 ms
57,736 KB
testcase_29 AC 369 ms
57,680 KB
testcase_30 AC 370 ms
57,776 KB
testcase_31 AC 369 ms
57,656 KB
testcase_32 AC 369 ms
57,696 KB
testcase_33 AC 373 ms
57,644 KB
testcase_34 AC 371 ms
57,704 KB
testcase_35 AC 372 ms
57,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^

ソースコード

diff #

fun main( args : Array<String> ) {
  val (a0, a1, a2) = readLine()!!.split(".").map { it.toInt() }
  val (b0, b1, b2) = readLine()!!.split(".").map { it.toInt() }
  when { 
    "%03d%03d%03d".format(a0,a1,a2).toLong() >= "%03d%03d%03d".format(b0,b1,b2).toLong()  -> "YES"
    else -> "NO"
  }.let { println(it) }
}
0