結果

問題 No.138 化石のバージョン
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 14:58:23
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 160 bytes
コンパイル時間 11,093 ms
コンパイル使用メモリ 431,332 KB
実行使用メモリ 56,824 KB
最終ジャッジ日時 2024-09-15 04:28:25
合計ジャッジ時間 23,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 313 ms
56,408 KB
testcase_04 AC 307 ms
56,700 KB
testcase_05 WA -
testcase_06 AC 314 ms
56,600 KB
testcase_07 AC 310 ms
56,512 KB
testcase_08 AC 307 ms
56,696 KB
testcase_09 AC 309 ms
56,768 KB
testcase_10 AC 308 ms
56,764 KB
testcase_11 AC 310 ms
56,604 KB
testcase_12 AC 313 ms
56,764 KB
testcase_13 AC 310 ms
56,524 KB
testcase_14 AC 309 ms
56,720 KB
testcase_15 AC 310 ms
56,712 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 314 ms
56,708 KB
testcase_21 WA -
testcase_22 AC 313 ms
56,740 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 308 ms
56,696 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 308 ms
56,788 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 308 ms
56,708 KB
testcase_34 AC 317 ms
56,636 KB
testcase_35 AC 310 ms
56,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){val(a,b,c)=readLine()!!.split(".").map{it.toInt()}
val(d,e,f)=readLine()!!.split(".").map{it.toInt()}
println(if(a<=d&&b<=e&&c<=f){"NO"}else{"YES"})}
0