結果

問題 No.46 はじめのn歩
ユーザー uchida_tuchida_t
提出日時 2023-04-10 12:47:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 271 ms / 5,000 ms
コード長 106 bytes
コンパイル時間 10,205 ms
コンパイル使用メモリ 426,904 KB
実行使用メモリ 51,912 KB
最終ジャッジ日時 2024-10-05 20:33:52
合計ジャッジ時間 13,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
51,628 KB
testcase_01 AC 262 ms
51,912 KB
testcase_02 AC 262 ms
51,912 KB
testcase_03 AC 266 ms
51,688 KB
testcase_04 AC 262 ms
51,492 KB
testcase_05 AC 264 ms
51,648 KB
testcase_06 AC 265 ms
51,872 KB
testcase_07 AC 266 ms
51,772 KB
testcase_08 AC 265 ms
51,624 KB
testcase_09 AC 271 ms
51,628 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)
	println((b+a-1)/a)
}
0