結果

問題 No.138 化石のバージョン
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 14:58:23
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 160 bytes
コンパイル時間 11,366 ms
コンパイル使用メモリ 414,316 KB
実行使用メモリ 53,408 KB
最終ジャッジ日時 2023-10-13 07:12:30
合計ジャッジ時間 23,714 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 286 ms
52,836 KB
testcase_04 AC 289 ms
52,860 KB
testcase_05 WA -
testcase_06 AC 283 ms
53,004 KB
testcase_07 AC 290 ms
52,964 KB
testcase_08 AC 287 ms
53,012 KB
testcase_09 AC 285 ms
53,008 KB
testcase_10 AC 287 ms
53,008 KB
testcase_11 AC 286 ms
52,848 KB
testcase_12 AC 284 ms
52,844 KB
testcase_13 AC 285 ms
52,980 KB
testcase_14 AC 287 ms
53,016 KB
testcase_15 AC 283 ms
53,072 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 289 ms
52,920 KB
testcase_21 WA -
testcase_22 AC 289 ms
52,952 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 289 ms
52,856 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 284 ms
52,880 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 289 ms
52,944 KB
testcase_34 AC 285 ms
53,008 KB
testcase_35 AC 287 ms
52,996 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