結果

問題 No.4 おもりと天秤
ユーザー antyanpomeantyanpome
提出日時 2020-06-26 15:38:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 585 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 81,820 KB
実行使用メモリ 66,360 KB
最終ジャッジ日時 2024-07-04 01:07:29
合計ジャッジ時間 2,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,476 KB
testcase_01 AC 37 ms
52,132 KB
testcase_02 WA -
testcase_03 AC 43 ms
59,860 KB
testcase_04 AC 48 ms
61,884 KB
testcase_05 AC 59 ms
65,908 KB
testcase_06 WA -
testcase_07 AC 59 ms
66,360 KB
testcase_08 AC 38 ms
53,908 KB
testcase_09 WA -
testcase_10 AC 64 ms
66,124 KB
testcase_11 AC 43 ms
59,320 KB
testcase_12 AC 38 ms
52,404 KB
testcase_13 AC 37 ms
52,644 KB
testcase_14 AC 37 ms
52,832 KB
testcase_15 AC 36 ms
52,648 KB
testcase_16 AC 42 ms
59,732 KB
testcase_17 AC 37 ms
52,380 KB
testcase_18 WA -
testcase_19 AC 57 ms
65,956 KB
testcase_20 AC 56 ms
65,400 KB
testcase_21 AC 56 ms
65,668 KB
testcase_22 AC 59 ms
65,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
w_list = list(map(int,input().split()))
all_weight = sum(w_list)
if all_weight%2==1:
    print("impossible")
else:
    target = all_weight//2
    dp = [[False for i in range(target)] for i in range(n+1)]
    dp[0][0] = True
    for i in range(n):
        for j in range(target):
            if (j >= w_list[i] and dp[i][j - w_list[i]] == True) or dp[i][j] == True:
                dp[i+1][j] = True
            else:
                dp[i+1][j] = False
                
    if dp[-1][-1] == True:
        print("possible")
    else:
        print("impossible")
        
0