結果

問題 No.4 おもりと天秤
ユーザー flippergoflippergo
提出日時 2024-10-05 08:21:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 473 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,640 KB
最終ジャッジ日時 2024-10-05 08:21:45
合計ジャッジ時間 2,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,392 KB
testcase_01 AC 45 ms
59,392 KB
testcase_02 AC 61 ms
64,172 KB
testcase_03 AC 51 ms
62,976 KB
testcase_04 AC 55 ms
64,256 KB
testcase_05 AC 98 ms
80,640 KB
testcase_06 AC 38 ms
57,132 KB
testcase_07 AC 99 ms
80,256 KB
testcase_08 AC 89 ms
76,928 KB
testcase_09 AC 97 ms
79,744 KB
testcase_10 AC 102 ms
80,128 KB
testcase_11 AC 50 ms
62,336 KB
testcase_12 AC 42 ms
59,472 KB
testcase_13 AC 42 ms
59,648 KB
testcase_14 AC 43 ms
59,392 KB
testcase_15 AC 42 ms
59,648 KB
testcase_16 AC 50 ms
62,336 KB
testcase_17 AC 57 ms
60,928 KB
testcase_18 AC 98 ms
80,000 KB
testcase_19 AC 118 ms
79,872 KB
testcase_20 AC 109 ms
80,384 KB
testcase_21 AC 145 ms
80,000 KB
testcase_22 AC 103 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
W = [0]+list(map(int,input().split()))
BASE = N*100
dp = [[0 for _ in range(2*BASE+1)] for _ in range(N+1)]
dp[1][W[1]+BASE] = 1
dp[1][-W[1]+BASE] = 1
for i in range(2,N+1):
    for j in range(-BASE,BASE+1):
        if W[i]+j+BASE<=2*BASE:
            dp[i][j+BASE] = dp[i-1][W[i]+j+BASE]
        if -W[i]+j+BASE>=0:
            dp[i][j+BASE] = max(dp[i][j+BASE],dp[i-1][-W[i]+j+BASE])
if dp[N][BASE]==1:
    print("possible")
else:
    print("impossible")
0