結果

問題 No.71 そろばん
ユーザー バカらっくバカらっく
提出日時 2019-09-23 10:30:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 5,000 ms
コード長 326 bytes
コンパイル時間 12,681 ms
コンパイル使用メモリ 431,916 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-09-19 04:13:29
合計ジャッジ時間 17,143 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
54,168 KB
testcase_01 AC 267 ms
54,084 KB
testcase_02 AC 270 ms
54,224 KB
testcase_03 AC 279 ms
54,324 KB
testcase_04 AC 287 ms
54,120 KB
testcase_05 AC 272 ms
54,336 KB
testcase_06 AC 274 ms
54,296 KB
testcase_07 AC 269 ms
54,292 KB
testcase_08 AC 280 ms
54,332 KB
testcase_09 AC 287 ms
54,172 KB
testcase_10 AC 278 ms
54,188 KB
testcase_11 AC 277 ms
54,116 KB
testcase_12 AC 272 ms
54,352 KB
testcase_13 AC 280 ms
54,324 KB
testcase_14 AC 280 ms
54,108 KB
testcase_15 AC 274 ms
54,196 KB
testcase_16 AC 274 ms
54,108 KB
testcase_17 AC 282 ms
54,160 KB
testcase_18 AC 279 ms
54,352 KB
testcase_19 AC 294 ms
54,316 KB
testcase_20 AC 279 ms
54,320 KB
testcase_21 AC 271 ms
54,124 KB
testcase_22 AC 279 ms
54,296 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

fun main(arr:Array<String>) {
    val ballCount = readLine()!!.toLong()
    var max = 0.toLong()
    for(i in (2..ballCount)) {
        if(i > ballCount) {
            break
        }
        var big = ballCount - (i - 1)
        val ans = big * i + (ballCount - big)
        max = Math.max(max, ans)
    }
    println(max)
}
0