結果

問題 No.1527 Input Constant is Good
ユーザー バカらっくバカらっく
提出日時 2022-02-04 10:02:18
言語 Kotlin
(1.9.23)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
51,500 KB
testcase_01 AC 326 ms
51,660 KB
testcase_02 AC 322 ms
51,496 KB
testcase_03 AC 320 ms
51,664 KB
testcase_04 AC 326 ms
51,896 KB
testcase_05 AC 325 ms
51,444 KB
testcase_06 AC 316 ms
51,504 KB
testcase_07 AC 325 ms
51,452 KB
testcase_08 AC 328 ms
51,612 KB
testcase_09 AC 315 ms
51,484 KB
testcase_10 AC 322 ms
51,636 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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