結果

問題 No.4 おもりと天秤
ユーザー RuteRute
提出日時 2021-06-30 15:37:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 489 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-06-27 01:41:12
合計ジャッジ時間 3,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 36 ms
11,008 KB
testcase_03 AC 33 ms
10,880 KB
testcase_04 AC 37 ms
10,880 KB
testcase_05 AC 259 ms
15,360 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 267 ms
15,360 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 522 ms
19,200 KB
testcase_10 AC 283 ms
16,000 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 273 ms
14,848 KB
testcase_19 AC 234 ms
14,848 KB
testcase_20 AC 244 ms
14,848 KB
testcase_21 AC 239 ms
14,464 KB
testcase_22 AC 228 ms
14,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
W = [0] + list(map(int,input().split()))
P = sum(W)
if P % 2 == 1:
  print("impossible")
else:
  dp = [[0 for i in range(P+1)]for j in range(N+1)]
  for i in range(N):
    dp[i][0] = 1
  for i in range(1,N+1):
    for j in range(1,P+1):
      if j >= W[i] and dp[i][j-W[i]] == 1:
        dp[i][j] = 1
      else:
          dp[i][j] = dp[i-1][j]
  f = 0
  for i in range(1,N+1):
    if dp[i][P//2]:
      f += 1
  if f:
    print("possible")
  else:
    print("impossible")
0