結果

問題 No.388 階段 (1)
ユーザー uchida_tuchida_t
提出日時 2023-04-11 12:39:10
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 12,287 ms
コンパイル使用メモリ 428,396 KB
実行使用メモリ 56,964 KB
最終ジャッジ日時 2024-10-07 05:06:11
合計ジャッジ時間 18,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
56,692 KB
testcase_01 AC 313 ms
56,820 KB
testcase_02 AC 308 ms
56,844 KB
testcase_03 AC 310 ms
56,840 KB
testcase_04 AC 310 ms
56,904 KB
testcase_05 AC 311 ms
56,764 KB
testcase_06 AC 309 ms
56,964 KB
testcase_07 AC 308 ms
56,764 KB
testcase_08 AC 311 ms
56,876 KB
testcase_09 AC 311 ms
56,832 KB
testcase_10 AC 313 ms
56,780 KB
testcase_11 AC 316 ms
56,888 KB
testcase_12 AC 314 ms
56,936 KB
testcase_13 AC 314 ms
56,844 KB
testcase_14 AC 309 ms
56,764 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