結果

問題 No.1527 Input Constant is Good
ユーザー バカらっくバカらっく
提出日時 2022-02-04 10:02:18
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 132 bytes
コンパイル時間 11,945 ms
コンパイル使用メモリ 418,380 KB
実行使用メモリ 53,224 KB
最終ジャッジ日時 2023-09-02 03:25:31
合計ジャッジ時間 16,645 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
52,864 KB
testcase_01 AC 266 ms
52,820 KB
testcase_02 AC 271 ms
53,224 KB
testcase_03 AC 276 ms
52,924 KB
testcase_04 AC 270 ms
52,868 KB
testcase_05 AC 270 ms
52,916 KB
testcase_06 AC 274 ms
52,944 KB
testcase_07 AC 265 ms
52,808 KB
testcase_08 AC 272 ms
52,984 KB
testcase_09 AC 263 ms
52,748 KB
testcase_10 AC 270 ms
52,992 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