結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
56,972 KB
testcase_01 AC 263 ms
57,000 KB
testcase_02 AC 264 ms
56,976 KB
testcase_03 AC 266 ms
57,016 KB
testcase_04 AC 267 ms
56,856 KB
testcase_05 AC 261 ms
56,964 KB
testcase_06 AC 267 ms
57,000 KB
testcase_07 AC 259 ms
56,884 KB
testcase_08 AC 261 ms
56,996 KB
testcase_09 AC 267 ms
56,932 KB
testcase_10 AC 275 ms
57,028 KB
testcase_11 AC 535 ms
57,024 KB
testcase_12 AC 279 ms
56,960 KB
testcase_13 AC 529 ms
57,000 KB
testcase_14 AC 265 ms
57,060 KB
testcase_15 AC 267 ms
56,904 KB
testcase_16 AC 263 ms
57,016 KB
testcase_17 AC 552 ms
57,020 KB
testcase_18 AC 288 ms
57,020 KB
testcase_19 AC 312 ms
56,956 KB
testcase_20 AC 271 ms
56,940 KB
testcase_21 AC 287 ms
56,916 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