結果

問題 No.1527 Input Constant is Good
ユーザー バカらっく
提出日時 2022-02-04 10:02:18
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 132 bytes
コンパイル時間 12,877 ms
コンパイル使用メモリ 436,636 KB
実行使用メモリ 51,896 KB
最終ジャッジ日時 2024-06-11 10:04:29
合計ジャッジ時間 16,408 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (a,b) = readLine()!!.split(" ").map { it.toInt() }
    println(if(a <= b) "Yes" else "No")
}
0