結果

問題 No.63 ポッキーゲーム
ユーザー FoltaFolta
提出日時 2019-05-27 10:36:13
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 625 ms / 5,000 ms
コード長 157 bytes
コンパイル時間 12,540 ms
コンパイル使用メモリ 429,868 KB
実行使用メモリ 57,120 KB
最終ジャッジ日時 2024-11-20 18:36:25
合計ジャッジ時間 20,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
56,844 KB
testcase_01 AC 317 ms
56,840 KB
testcase_02 AC 313 ms
56,940 KB
testcase_03 AC 312 ms
56,872 KB
testcase_04 AC 313 ms
56,980 KB
testcase_05 AC 313 ms
56,840 KB
testcase_06 AC 313 ms
56,864 KB
testcase_07 AC 317 ms
57,120 KB
testcase_08 AC 314 ms
56,964 KB
testcase_09 AC 320 ms
56,992 KB
testcase_10 AC 322 ms
57,040 KB
testcase_11 AC 625 ms
56,976 KB
testcase_12 AC 325 ms
56,976 KB
testcase_13 AC 623 ms
56,980 KB
testcase_14 AC 329 ms
57,004 KB
testcase_15 AC 326 ms
56,992 KB
testcase_16 AC 325 ms
56,924 KB
testcase_17 AC 611 ms
57,040 KB
testcase_18 AC 321 ms
57,064 KB
testcase_19 AC 360 ms
57,044 KB
testcase_20 AC 328 ms
57,016 KB
testcase_21 AC 330 ms
56,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val (l, k) = readLine()!!.split(" ").map(String::toInt)
    var i = 0
    while(l > 2 * i * k){
        i ++
    }
    println((i - 1) * k)
}
0