結果

問題 No.138 化石のバージョン
ユーザー KisaragiEffective
提出日時 2019-11-09 14:58:23
言語 Kotlin
(2.1.0)
結果
WA  
実行時間 -
コード長 160 bytes
コンパイル時間 11,093 ms
コンパイル使用メモリ 431,332 KB
実行使用メモリ 56,824 KB
最終ジャッジ日時 2024-09-15 04:28:25
合計ジャッジ時間 23,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 17 WA * 16
権限があれば一括ダウンロードができます

ソースコード

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