結果

問題 No.4 おもりと天秤
ユーザー rarpipipirarpipipi
提出日時 2023-12-31 03:52:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 70,704 KB
最終ジャッジ日時 2024-09-27 17:00:54
合計ジャッジ時間 2,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,820 KB
testcase_01 AC 40 ms
52,320 KB
testcase_02 AC 49 ms
61,776 KB
testcase_03 AC 49 ms
60,032 KB
testcase_04 AC 56 ms
61,516 KB
testcase_05 AC 63 ms
68,336 KB
testcase_06 AC 39 ms
52,420 KB
testcase_07 AC 64 ms
68,472 KB
testcase_08 AC 50 ms
61,712 KB
testcase_09 AC 60 ms
70,704 KB
testcase_10 AC 65 ms
69,124 KB
testcase_11 AC 45 ms
59,504 KB
testcase_12 AC 40 ms
53,616 KB
testcase_13 AC 41 ms
52,320 KB
testcase_14 AC 42 ms
58,024 KB
testcase_15 AC 39 ms
53,912 KB
testcase_16 AC 46 ms
60,788 KB
testcase_17 AC 41 ms
52,624 KB
testcase_18 AC 65 ms
68,968 KB
testcase_19 AC 64 ms
68,656 KB
testcase_20 AC 63 ms
68,844 KB
testcase_21 AC 62 ms
67,776 KB
testcase_22 AC 62 ms
68,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
n=int(input())
w=list(map(int,input().split()))
mid=-(-sum(w)//2)

dp=[[0]*2*(mid+1) for i in range(n+1)]
dp[-1][0]=1
for i in range(n):
    for ind in range(-mid,mid+1):
        if not dp[i-1][ind]:continue
        if ind+w[i]<=mid:
            dp[i][ind+w[i]]=1
        if -mid<=ind-w[i]:
            dp[i][ind-w[i]]=1

print("possible" if dp[n-1][0] else 'impossible')
0