結果

問題 No.1527 Input Constant is Good
ユーザー AhamNomAhamNom
提出日時 2022-05-16 19:26:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 131 bytes
コンパイル時間 15,159 ms
コンパイル使用メモリ 411,816 KB
実行使用メモリ 53,228 KB
最終ジャッジ日時 2023-10-12 13:21:40
合計ジャッジ時間 16,323 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
52,868 KB
testcase_01 AC 293 ms
53,228 KB
testcase_02 AC 295 ms
53,120 KB
testcase_03 AC 296 ms
53,032 KB
testcase_04 AC 291 ms
53,080 KB
testcase_05 AC 290 ms
52,980 KB
testcase_06 AC 294 ms
52,784 KB
testcase_07 AC 290 ms
52,944 KB
testcase_08 AC 294 ms
52,804 KB
testcase_09 AC 287 ms
53,056 KB
testcase_10 AC 292 ms
53,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
	val arr = readLine()!!.split(" ").map { it.toInt() }.toTypedArray()
	println(if (arr[0] <= arr[1]) "Yes" else "No")
}
0