結果

問題 No.1527 Input Constant is Good
ユーザー AhamNomAhamNom
提出日時 2022-05-16 19:26:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 131 bytes
コンパイル時間 12,777 ms
コンパイル使用メモリ 431,028 KB
実行使用メモリ 51,668 KB
最終ジャッジ日時 2024-09-14 12:21:02
合計ジャッジ時間 17,242 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
51,508 KB
testcase_01 AC 308 ms
51,668 KB
testcase_02 AC 307 ms
51,432 KB
testcase_03 AC 306 ms
51,456 KB
testcase_04 AC 309 ms
51,544 KB
testcase_05 AC 305 ms
51,528 KB
testcase_06 AC 308 ms
51,468 KB
testcase_07 AC 312 ms
51,528 KB
testcase_08 AC 311 ms
51,384 KB
testcase_09 AC 312 ms
51,644 KB
testcase_10 AC 313 ms
51,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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