結果

問題 No.388 階段 (1)
ユーザー uchida_tuchida_t
提出日時 2023-04-11 12:39:10
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 11,714 ms
コンパイル使用メモリ 429,720 KB
実行使用メモリ 56,936 KB
最終ジャッジ日時 2024-04-16 11:21:59
合計ジャッジ時間 17,262 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
56,684 KB
testcase_01 AC 296 ms
56,776 KB
testcase_02 AC 306 ms
56,828 KB
testcase_03 AC 308 ms
56,836 KB
testcase_04 AC 298 ms
56,800 KB
testcase_05 AC 305 ms
56,912 KB
testcase_06 AC 301 ms
56,932 KB
testcase_07 AC 306 ms
56,872 KB
testcase_08 AC 315 ms
56,872 KB
testcase_09 AC 306 ms
56,864 KB
testcase_10 AC 308 ms
56,680 KB
testcase_11 AC 305 ms
56,672 KB
testcase_12 AC 299 ms
56,680 KB
testcase_13 AC 300 ms
56,844 KB
testcase_14 AC 303 ms
56,936 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((a / b) + 1)
}
0