結果

問題 No.4 おもりと天秤
ユーザー komkomhkomkomh
提出日時 2019-04-05 08:39:25
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 540 bytes
コンパイル時間 13,198 ms
コンパイル使用メモリ 430,952 KB
実行使用メモリ 60,484 KB
最終ジャッジ日時 2024-11-20 17:45:22
合計ジャッジ時間 22,454 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
54,924 KB
testcase_01 AC 330 ms
51,500 KB
testcase_02 AC 338 ms
55,324 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 345 ms
55,300 KB
testcase_06 AC 380 ms
55,280 KB
testcase_07 AC 377 ms
55,244 KB
testcase_08 AC 368 ms
51,724 KB
testcase_09 AC 342 ms
54,996 KB
testcase_10 WA -
testcase_11 AC 335 ms
55,056 KB
testcase_12 AC 336 ms
55,008 KB
testcase_13 AC 336 ms
55,388 KB
testcase_14 AC 339 ms
54,924 KB
testcase_15 AC 339 ms
55,284 KB
testcase_16 WA -
testcase_17 AC 342 ms
54,916 KB
testcase_18 AC 345 ms
55,060 KB
testcase_19 AC 342 ms
55,300 KB
testcase_20 AC 343 ms
55,464 KB
testcase_21 AC 344 ms
55,000 KB
testcase_22 AC 346 ms
54,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:9: warning: variable 'N' is never used
    val N: Int = readLine()!!.toInt()
        ^

ソースコード

diff #

package yukicoder

fun main() {
    val N: Int = readLine()!!.toInt()
    val W: List<Int> = readLine()!!.split(" ").map(String::toInt)

    val sum: Int = W.sum()
    if (sum % 2 != 0) {
        println("impossible")
        return
    }

    val halfW = sum / 2
    val sortedW = W.sortedDescending()
    var sumW = 0
    for (currentW in sortedW) {
        if (sumW + currentW <= halfW) {
            sumW += currentW
        }
    }
    if (halfW == sumW) {
        println("possible")
    } else {
        println("impossible")
    }
}
0