結果

問題 No.63 ポッキーゲーム
ユーザー komkomhkomkomh
提出日時 2019-04-17 08:11:40
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 192 bytes
コンパイル時間 11,300 ms
コンパイル使用メモリ 426,596 KB
実行使用メモリ 57,004 KB
最終ジャッジ日時 2024-11-20 17:58:24
合計ジャッジ時間 19,477 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
51,600 KB
testcase_01 AC 316 ms
51,740 KB
testcase_02 AC 316 ms
51,708 KB
testcase_03 AC 320 ms
51,928 KB
testcase_04 AC 318 ms
51,804 KB
testcase_05 AC 319 ms
51,928 KB
testcase_06 AC 317 ms
51,724 KB
testcase_07 AC 318 ms
51,956 KB
testcase_08 AC 320 ms
51,692 KB
testcase_09 AC 318 ms
51,948 KB
testcase_10 AC 318 ms
51,624 KB
testcase_11 AC 317 ms
51,468 KB
testcase_12 AC 321 ms
51,812 KB
testcase_13 WA -
testcase_14 AC 319 ms
51,640 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 320 ms
51,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val (l, k) = readLine()!!.split(" ").map(String::toInt)
    val forward = k * 2
    val count = if (l > forward) l / forward else 0
    println(k * count)
}
0