結果

問題 No.138 化石のバージョン
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-02 13:44:01
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 11,543 ms
コンパイル使用メモリ 436,188 KB
実行使用メモリ 57,872 KB
最終ジャッジ日時 2024-11-20 11:17:54
合計ジャッジ時間 26,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 371 ms
57,712 KB
testcase_01 AC 366 ms
57,800 KB
testcase_02 AC 370 ms
57,716 KB
testcase_03 AC 374 ms
57,724 KB
testcase_04 AC 365 ms
57,696 KB
testcase_05 AC 367 ms
57,628 KB
testcase_06 AC 358 ms
57,628 KB
testcase_07 AC 359 ms
57,700 KB
testcase_08 AC 355 ms
57,680 KB
testcase_09 AC 368 ms
57,728 KB
testcase_10 AC 368 ms
57,776 KB
testcase_11 AC 368 ms
57,604 KB
testcase_12 AC 360 ms
57,612 KB
testcase_13 AC 359 ms
57,700 KB
testcase_14 AC 363 ms
57,652 KB
testcase_15 AC 367 ms
57,488 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 368 ms
57,712 KB
testcase_20 AC 360 ms
57,620 KB
testcase_21 WA -
testcase_22 AC 359 ms
57,640 KB
testcase_23 AC 367 ms
57,704 KB
testcase_24 AC 361 ms
57,724 KB
testcase_25 AC 360 ms
57,708 KB
testcase_26 AC 365 ms
57,640 KB
testcase_27 AC 366 ms
57,764 KB
testcase_28 AC 367 ms
57,808 KB
testcase_29 AC 363 ms
57,612 KB
testcase_30 AC 362 ms
57,728 KB
testcase_31 AC 362 ms
57,672 KB
testcase_32 AC 361 ms
57,612 KB
testcase_33 AC 368 ms
57,720 KB
testcase_34 AC 368 ms
57,872 KB
testcase_35 AC 363 ms
57,688 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