結果

問題 No.1446 ハンバーグと納豆ごはん
ユーザー face4face4
提出日時 2021-04-07 21:05:01
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 11,661 ms
コンパイル使用メモリ 435,360 KB
実行使用メモリ 56,804 KB
最終ジャッジ日時 2024-06-23 01:26:03
合計ジャッジ時間 22,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
53,004 KB
testcase_01 AC 270 ms
56,572 KB
testcase_02 AC 275 ms
56,532 KB
testcase_03 AC 264 ms
56,552 KB
testcase_04 AC 272 ms
56,704 KB
testcase_05 AC 273 ms
56,656 KB
testcase_06 AC 271 ms
56,588 KB
testcase_07 AC 267 ms
56,572 KB
testcase_08 AC 262 ms
56,704 KB
testcase_09 AC 268 ms
56,584 KB
testcase_10 AC 266 ms
56,444 KB
testcase_11 AC 268 ms
56,544 KB
testcase_12 AC 267 ms
56,560 KB
testcase_13 AC 268 ms
56,700 KB
testcase_14 AC 260 ms
56,704 KB
testcase_15 AC 263 ms
56,632 KB
testcase_16 AC 263 ms
56,708 KB
testcase_17 AC 266 ms
56,584 KB
testcase_18 AC 267 ms
56,568 KB
testcase_19 AC 287 ms
56,804 KB
testcase_20 AC 264 ms
56,568 KB
testcase_21 AC 261 ms
56,560 KB
testcase_22 AC 265 ms
56,508 KB
testcase_23 AC 264 ms
56,572 KB
testcase_24 AC 276 ms
56,588 KB
testcase_25 AC 301 ms
56,740 KB
testcase_26 AC 267 ms
56,548 KB
testcase_27 AC 266 ms
56,704 KB
testcase_28 AC 269 ms
56,696 KB
testcase_29 AC 264 ms
56,560 KB
testcase_30 AC 271 ms
56,740 KB
testcase_31 AC 271 ms
56,556 KB
testcase_32 AC 277 ms
56,572 KB
testcase_33 AC 272 ms
56,700 KB
testcase_34 AC 263 ms
56,572 KB
testcase_35 AC 271 ms
56,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val (a, b, n, m) = readLine()!!.split(" ").map{it.toLong()}
    println(with(Math.min(a,b)){this+(a-this)/(n+1)+(b-this)/(m+1)})
}
0