結果

問題 No.63 ポッキーゲーム
ユーザー komkomhkomkomh
提出日時 2019-04-17 08:16:48
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 321 ms / 5,000 ms
コード長 243 bytes
コンパイル時間 11,111 ms
コンパイル使用メモリ 432,020 KB
実行使用メモリ 51,980 KB
最終ジャッジ日時 2024-11-20 17:58:55
合計ジャッジ時間 19,357 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
51,520 KB
testcase_01 AC 315 ms
51,800 KB
testcase_02 AC 317 ms
51,740 KB
testcase_03 AC 320 ms
51,604 KB
testcase_04 AC 317 ms
51,900 KB
testcase_05 AC 317 ms
51,752 KB
testcase_06 AC 318 ms
51,976 KB
testcase_07 AC 318 ms
51,924 KB
testcase_08 AC 317 ms
51,816 KB
testcase_09 AC 315 ms
51,968 KB
testcase_10 AC 319 ms
51,484 KB
testcase_11 AC 314 ms
51,640 KB
testcase_12 AC 315 ms
51,520 KB
testcase_13 AC 321 ms
51,500 KB
testcase_14 AC 320 ms
51,856 KB
testcase_15 AC 313 ms
51,840 KB
testcase_16 AC 314 ms
51,944 KB
testcase_17 AC 317 ms
51,648 KB
testcase_18 AC 316 ms
51,964 KB
testcase_19 AC 314 ms
51,980 KB
testcase_20 AC 317 ms
51,592 KB
testcase_21 AC 313 ms
51,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

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