結果

問題 No.46 はじめのn歩
ユーザー uchida_tuchida_t
提出日時 2023-04-10 12:47:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 310 ms / 5,000 ms
コード長 106 bytes
コンパイル時間 11,722 ms
コンパイル使用メモリ 431,404 KB
実行使用メモリ 52,012 KB
最終ジャッジ日時 2024-04-15 18:34:13
合計ジャッジ時間 15,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
51,744 KB
testcase_01 AC 307 ms
51,768 KB
testcase_02 AC 302 ms
51,772 KB
testcase_03 AC 297 ms
52,012 KB
testcase_04 AC 294 ms
51,660 KB
testcase_05 AC 297 ms
51,768 KB
testcase_06 AC 301 ms
51,820 KB
testcase_07 AC 296 ms
51,684 KB
testcase_08 AC 301 ms
51,636 KB
testcase_09 AC 300 ms
51,916 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