結果

問題 No.63 ポッキーゲーム
ユーザー da_louisda_louis
提出日時 2020-02-07 00:59:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 552 ms / 5,000 ms
コード長 263 bytes
コンパイル時間 11,568 ms
コンパイル使用メモリ 435,708 KB
実行使用メモリ 57,052 KB
最終ジャッジ日時 2024-09-25 07:08:32
合計ジャッジ時間 19,556 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
56,756 KB
testcase_01 AC 310 ms
56,676 KB
testcase_02 AC 309 ms
56,872 KB
testcase_03 AC 309 ms
56,704 KB
testcase_04 AC 306 ms
56,932 KB
testcase_05 AC 306 ms
56,996 KB
testcase_06 AC 303 ms
57,052 KB
testcase_07 AC 311 ms
57,052 KB
testcase_08 AC 303 ms
56,844 KB
testcase_09 AC 306 ms
57,028 KB
testcase_10 AC 309 ms
56,988 KB
testcase_11 AC 552 ms
56,952 KB
testcase_12 AC 316 ms
56,984 KB
testcase_13 AC 552 ms
56,896 KB
testcase_14 AC 318 ms
56,968 KB
testcase_15 AC 318 ms
57,044 KB
testcase_16 AC 313 ms
56,996 KB
testcase_17 AC 538 ms
56,916 KB
testcase_18 AC 313 ms
56,924 KB
testcase_19 AC 343 ms
56,900 KB
testcase_20 AC 321 ms
56,804 KB
testcase_21 AC 331 ms
57,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    p134()
}

fun p134() {
    val (l, k) = readLine()!!.split(' ').map { it.toLong() }

    var remain = l
    var answer = 0L

    while (remain > 2 * k) {
        answer += k
        remain -= 2 * k
    }

    println(answer)
}
0