結果

問題 No.29 パワーアップ
ユーザー minokasagominokasago
提出日時 2019-11-01 15:21:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 325 ms / 5,000 ms
コード長 360 bytes
コンパイル時間 12,384 ms
コンパイル使用メモリ 439,808 KB
実行使用メモリ 51,940 KB
最終ジャッジ日時 2024-09-14 22:42:46
合計ジャッジ時間 20,636 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
51,432 KB
testcase_01 AC 314 ms
51,724 KB
testcase_02 AC 315 ms
51,416 KB
testcase_03 AC 311 ms
51,548 KB
testcase_04 AC 316 ms
51,504 KB
testcase_05 AC 323 ms
51,508 KB
testcase_06 AC 316 ms
51,628 KB
testcase_07 AC 314 ms
51,704 KB
testcase_08 AC 312 ms
51,760 KB
testcase_09 AC 314 ms
51,684 KB
testcase_10 AC 325 ms
51,940 KB
testcase_11 AC 322 ms
51,528 KB
testcase_12 AC 309 ms
51,676 KB
testcase_13 AC 314 ms
51,636 KB
testcase_14 AC 316 ms
51,596 KB
testcase_15 AC 319 ms
51,600 KB
testcase_16 AC 323 ms
51,500 KB
testcase_17 AC 314 ms
51,564 KB
testcase_18 AC 311 ms
51,808 KB
testcase_19 AC 314 ms
51,656 KB
testcase_20 AC 313 ms
51,560 KB
testcase_21 AC 313 ms
51,420 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:12:15: warning: variable 'ans' initializer is redundant
    var ans = 0
              ^

ソースコード

diff #

import kotlin.math.*

fun main()
{
    val N = readLine()!!.toInt()
    val cnt = Array<Int>(11, {0})

    repeat(N) {
        readLine()!!.split(" ").map(String::toInt).forEach { cnt[it]++ }
    }

    var ans = 0
    var sum = 0
    var pairs = 0
    cnt.forEach { c ->  sum += c; pairs += c / 2 }
    ans = pairs + (sum - pairs * 2) / 4
    println(ans)
}

0