結果

問題 No.63 ポッキーゲーム
ユーザー javyjavy
提出日時 2015-11-02 23:17:40
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 11,031 ms
コンパイル使用メモリ 432,928 KB
実行使用メモリ 52,088 KB
最終ジャッジ日時 2024-11-19 15:05:17
合計ジャッジ時間 16,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
51,980 KB
testcase_01 AC 268 ms
51,796 KB
testcase_02 AC 275 ms
51,968 KB
testcase_03 AC 272 ms
51,956 KB
testcase_04 WA -
testcase_05 AC 275 ms
51,700 KB
testcase_06 AC 275 ms
51,832 KB
testcase_07 AC 277 ms
51,700 KB
testcase_08 AC 268 ms
51,768 KB
testcase_09 AC 283 ms
51,824 KB
testcase_10 AC 276 ms
51,828 KB
testcase_11 AC 281 ms
51,800 KB
testcase_12 AC 271 ms
51,968 KB
testcase_13 WA -
testcase_14 AC 273 ms
51,900 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 283 ms
51,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/02.
 */
fun main(args: Array<String>) {
    fun readLineLongArray() : List<Long> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toLong() }
        return ret
    }
    fun readLineLong() : Long {
        val str = readLine() as String
        return str.toLong()
    }
    val inputNum = readLineLongArray()
    val pokeyLen = inputNum[0]
    val eatLen = inputNum[1]
    val eatLenTwo = eatLen * 2
    println(pokeyLen / eatLenTwo * eatLen)
}
0