結果

問題 No.57 ミリオンダイス
ユーザー javyjavy
提出日時 2015-11-11 16:02:10
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 298 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 12,220 ms
コンパイル使用メモリ 426,112 KB
実行使用メモリ 49,944 KB
最終ジャッジ日時 2024-11-19 19:31:53
合計ジャッジ時間 16,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
49,620 KB
testcase_01 AC 282 ms
49,816 KB
testcase_02 AC 284 ms
49,816 KB
testcase_03 AC 286 ms
49,496 KB
testcase_04 AC 290 ms
49,944 KB
testcase_05 AC 298 ms
49,644 KB
testcase_06 AC 284 ms
49,628 KB
testcase_07 AC 283 ms
49,816 KB
testcase_08 AC 286 ms
49,808 KB
testcase_09 AC 286 ms
49,692 KB
testcase_10 AC 284 ms
49,596 KB
testcase_11 AC 297 ms
49,588 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/11.
 */
fun main(args: Array<String>) {
    fun readLineLong() : Long {
        val str = readLine() as String
        return str.toLong()
    }

    val inputLong = readLineLong() * 7
    if (inputLong % 2.toLong() == 0.toLong()) {
        println(inputLong / 2)
    } else {
        println(inputLong / 2.0)
    }
}
0