結果

問題 No.63 ポッキーゲーム
ユーザー yo-kondoyo-kondo
提出日時 2018-03-24 22:47:46
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 324 ms / 5,000 ms
コード長 650 bytes
コンパイル時間 11,356 ms
コンパイル使用メモリ 433,644 KB
実行使用メモリ 51,956 KB
最終ジャッジ日時 2024-11-20 14:44:21
合計ジャッジ時間 19,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
51,712 KB
testcase_01 AC 317 ms
51,792 KB
testcase_02 AC 315 ms
51,596 KB
testcase_03 AC 317 ms
51,888 KB
testcase_04 AC 318 ms
51,816 KB
testcase_05 AC 318 ms
51,492 KB
testcase_06 AC 316 ms
51,708 KB
testcase_07 AC 316 ms
51,556 KB
testcase_08 AC 316 ms
51,800 KB
testcase_09 AC 317 ms
51,776 KB
testcase_10 AC 314 ms
51,704 KB
testcase_11 AC 317 ms
51,720 KB
testcase_12 AC 317 ms
51,792 KB
testcase_13 AC 317 ms
51,744 KB
testcase_14 AC 324 ms
51,624 KB
testcase_15 AC 322 ms
51,716 KB
testcase_16 AC 321 ms
51,956 KB
testcase_17 AC 324 ms
51,692 KB
testcase_18 AC 323 ms
51,808 KB
testcase_19 AC 318 ms
51,716 KB
testcase_20 AC 316 ms
51,612 KB
testcase_21 AC 318 ms
51,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:7:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package yukicoder.no63

/**
 * エントリポイント
 * @param args コマンドライン引数
 */
fun main(args: Array<String>) {
    val in1 = readLine()
    println(pocky(in1))
}

/**
 * 食べるポッキーの長さを返します。
 * @param lengthAndGnaw ポッキーの長さと、かじる長さ
 * @return 食べるポッキーの長さ
 */
fun pocky(lengthAndGnaw: String?): String {
    if (lengthAndGnaw == null) {
        return ""
    }
    val sp = lengthAndGnaw.split(" ").map { it.toInt() }
    // 長さが0(割り切れる)の場合はNGのため、-1する。
    return ((sp[0] - 1) / (sp[1] * 2) * sp[1]).toString()
}
0