結果

問題 No.4 おもりと天秤
ユーザー monakamonaka
提出日時 2022-01-06 20:22:20
言語 TypeScript
(5.7.2)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 502 bytes
コンパイル時間 8,263 ms
コンパイル使用メモリ 230,884 KB
実行使用メモリ 43,136 KB
最終ジャッジ日時 2024-12-31 16:43:55
合計ジャッジ時間 10,725 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
39,424 KB
testcase_01 AC 62 ms
39,296 KB
testcase_02 AC 63 ms
39,296 KB
testcase_03 AC 62 ms
39,296 KB
testcase_04 AC 68 ms
39,296 KB
testcase_05 AC 74 ms
43,136 KB
testcase_06 AC 63 ms
39,296 KB
testcase_07 AC 77 ms
43,008 KB
testcase_08 AC 64 ms
39,296 KB
testcase_09 AC 76 ms
43,136 KB
testcase_10 AC 76 ms
43,136 KB
testcase_11 AC 63 ms
39,296 KB
testcase_12 AC 63 ms
39,296 KB
testcase_13 AC 63 ms
39,296 KB
testcase_14 AC 65 ms
39,296 KB
testcase_15 AC 64 ms
39,296 KB
testcase_16 AC 64 ms
39,424 KB
testcase_17 AC 65 ms
39,296 KB
testcase_18 AC 73 ms
43,136 KB
testcase_19 AC 74 ms
43,136 KB
testcase_20 AC 74 ms
42,880 KB
testcase_21 AC 73 ms
42,880 KB
testcase_22 AC 75 ms
42,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main(input) {
  const n = Number(input[0]);
  const w = input[1].split(" ").map(x=>Number(x));
  const b = w.reduce((sum, x) => sum + x);
  if(b % 2 === 1) {
    console.log("impossible");
    return;
  }
  const dp = new Array(b+1).fill(false);
  for(let i=0; i<n; i++) {
    for(let j=b; j>=0; j--) {
      if(dp[j]) dp[j+w[i]] = true;
    }
    dp[w[i]] = true;
  }
  console.log(dp[b/2] ? "possible" : "impossible");
}

main(require("fs").readFileSync("/dev/stdin", "utf8").split("\n"));
0