結果

問題 No.4 おもりと天秤
ユーザー くわいくわい
提出日時 2015-11-05 21:46:01
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 649 bytes
コンパイル時間 9,119 ms
コンパイル使用メモリ 265,540 KB
実行使用メモリ 65,812 KB
最終ジャッジ日時 2024-06-29 05:04:59
合計ジャッジ時間 28,882 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 863 ms
65,664 KB
testcase_01 AC 818 ms
64,964 KB
testcase_02 AC 857 ms
65,276 KB
testcase_03 AC 831 ms
65,668 KB
testcase_04 AC 848 ms
65,580 KB
testcase_05 AC 906 ms
65,812 KB
testcase_06 AC 840 ms
65,408 KB
testcase_07 AC 875 ms
65,540 KB
testcase_08 AC 825 ms
65,020 KB
testcase_09 AC 867 ms
65,708 KB
testcase_10 AC 893 ms
65,456 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 839 ms
65,628 KB
testcase_14 WA -
testcase_15 AC 829 ms
65,512 KB
testcase_16 AC 831 ms
65,516 KB
testcase_17 AC 844 ms
65,280 KB
testcase_18 AC 882 ms
65,580 KB
testcase_19 AC 864 ms
65,612 KB
testcase_20 AC 863 ms
65,424 KB
testcase_21 AC 862 ms
65,672 KB
testcase_22 AC 851 ms
65,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Problem004 {

  def proc(n: Int, weight: Seq[Int]): String = {
    if (weight.sum % 2 != 0) {
      return "impossible"
    }

    val target = weight.sum / 2
    val dp = Array.fill(target + 1)(false)
    dp(0) = true

    for (w <- weight) {
      for (d <- 0 until target) {
        if (dp(d) && d + w <= target) dp(d + w) = true
      }
    }

    if (dp(target)) "possible" else "impossible"
  }

  def main(args: Array[String]): Unit = {
    val sc = new Scanner(System.in)
    val n = sc.nextInt()
    val weight = Seq.fill(n)(sc.nextInt())

    val result: String = proc(n, weight)
    println(result)
  }
}
0