結果

問題 No.46 はじめのn歩
ユーザー uchida_tuchida_t
提出日時 2023-04-10 12:39:00
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 301 ms / 5,000 ms
コード長 157 bytes
コンパイル時間 13,969 ms
コンパイル使用メモリ 426,936 KB
実行使用メモリ 56,804 KB
最終ジャッジ日時 2024-10-05 20:22:44
合計ジャッジ時間 15,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
56,576 KB
testcase_01 AC 299 ms
56,788 KB
testcase_02 AC 291 ms
56,708 KB
testcase_03 AC 297 ms
56,800 KB
testcase_04 AC 301 ms
56,796 KB
testcase_05 AC 296 ms
56,792 KB
testcase_06 AC 299 ms
56,624 KB
testcase_07 AC 300 ms
56,804 KB
testcase_08 AC 295 ms
56,632 KB
testcase_09 AC 297 ms
56,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

fun main(args: Array<String>){
	var (a,b)=readLine()!!.split(" ").map(String::toInt)
	if (b % a > 0) {
		println((b / a) + 1)
	} else {
		println(b / a)
	}
}
0