結果

問題 No.4 おもりと天秤
ユーザー くわいくわい
提出日時 2015-11-05 21:52:49
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,050 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 8,618 ms
コンパイル使用メモリ 268,460 KB
実行使用メモリ 65,916 KB
最終ジャッジ日時 2024-06-29 05:05:38
合計ジャッジ時間 33,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 953 ms
65,512 KB
testcase_01 AC 929 ms
64,836 KB
testcase_02 AC 967 ms
65,588 KB
testcase_03 AC 966 ms
65,600 KB
testcase_04 AC 969 ms
65,532 KB
testcase_05 AC 1,050 ms
65,720 KB
testcase_06 AC 969 ms
65,672 KB
testcase_07 AC 1,049 ms
65,916 KB
testcase_08 AC 948 ms
65,244 KB
testcase_09 AC 1,009 ms
65,804 KB
testcase_10 AC 1,042 ms
65,672 KB
testcase_11 AC 956 ms
65,724 KB
testcase_12 AC 960 ms
65,540 KB
testcase_13 AC 956 ms
65,540 KB
testcase_14 AC 961 ms
65,484 KB
testcase_15 AC 965 ms
65,732 KB
testcase_16 AC 960 ms
65,548 KB
testcase_17 AC 960 ms
65,620 KB
testcase_18 AC 1,002 ms
65,804 KB
testcase_19 AC 1,047 ms
65,740 KB
testcase_20 AC 1,048 ms
65,708 KB
testcase_21 AC 1,045 ms
65,772 KB
testcase_22 AC 1,046 ms
65,704 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 <- target - w to 0 by -1 if dp(d)) {
        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