結果

問題 No.4 おもりと天秤
ユーザー 定期定期定期定期
提出日時 2024-11-12 02:21:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 224 ms / 5,000 ms
コード長 398 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-11-12 02:21:33
合計ジャッジ時間 4,186 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,136 KB
testcase_01 AC 28 ms
11,008 KB
testcase_02 AC 46 ms
11,904 KB
testcase_03 AC 38 ms
11,392 KB
testcase_04 AC 51 ms
11,776 KB
testcase_05 AC 223 ms
18,560 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 220 ms
18,432 KB
testcase_08 AC 35 ms
18,432 KB
testcase_09 AC 156 ms
18,432 KB
testcase_10 AC 224 ms
18,432 KB
testcase_11 AC 35 ms
11,264 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 30 ms
11,136 KB
testcase_15 AC 34 ms
10,880 KB
testcase_16 AC 36 ms
11,392 KB
testcase_17 AC 36 ms
11,392 KB
testcase_18 AC 179 ms
18,432 KB
testcase_19 AC 197 ms
18,432 KB
testcase_20 AC 217 ms
18,688 KB
testcase_21 AC 194 ms
18,560 KB
testcase_22 AC 197 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
weights = list(map(int, input().split()))

dp = [[False] * 10001 for _ in range(n+1)]
weight_sum = sum(weights)
if weight_sum & 1:
  print("impossible")
  exit()

dp[0][0] = True

for i in range(n):
  for j in range(10001):
    if dp[i][j]:
      dp[i + 1][j + weights[i]] = True
      dp[i + 1][j] = True

if dp[n][weight_sum // 2]:
  print("possible")
else:
  print("impossible")
0