結果

問題 No.4 おもりと天秤
ユーザー popketlepopketle
提出日時 2019-12-24 11:59:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 396 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 11,852 KB
実行使用メモリ 17,996 KB
最終ジャッジ日時 2023-10-21 18:09:01
合計ジャッジ時間 3,931 ms
ジャッジサーバーID
(参考情報)
judge9 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,384 KB
testcase_01 AC 27 ms
10,124 KB
testcase_02 AC 51 ms
11,320 KB
testcase_03 AC 44 ms
10,960 KB
testcase_04 AC 51 ms
11,320 KB
testcase_05 AC 256 ms
17,996 KB
testcase_06 AC 32 ms
10,332 KB
testcase_07 AC 254 ms
17,996 KB
testcase_08 AC 28 ms
10,124 KB
testcase_09 RE -
testcase_10 AC 270 ms
17,996 KB
testcase_11 AC 40 ms
10,696 KB
testcase_12 AC 33 ms
10,384 KB
testcase_13 AC 33 ms
10,384 KB
testcase_14 AC 34 ms
10,488 KB
testcase_15 AC 33 ms
10,384 KB
testcase_16 AC 40 ms
10,800 KB
testcase_17 AC 38 ms
10,696 KB
testcase_18 AC 209 ms
17,996 KB
testcase_19 AC 237 ms
17,996 KB
testcase_20 AC 238 ms
17,996 KB
testcase_21 AC 243 ms
17,996 KB
testcase_22 AC 236 ms
17,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if sum(W)%2!=0:
  print('impossible')
  exit()
dp=[[False]*(100*100) for _ in range(n+1)]
dp[0][0],dp[0][W[0]]=True,True
for i in range(n):
  for j in range(100*100):
    if dp[i][j]==True:
      dp[i+1][j+W[i]]=True
      dp[i+1][j]=True
for i in range(n):
  if dp[i][sum(W)//2]==True:
    print('possible')
    exit()
else:
  print('impossible')
0