結果

問題 No.4 おもりと天秤
ユーザー matsu7874matsu7874
提出日時 2015-08-14 17:16:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 405 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-06-26 09:17:11
合計ジャッジ時間 5,075 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
10,880 KB
testcase_01 AC 43 ms
11,008 KB
testcase_02 AC 62 ms
11,648 KB
testcase_03 AC 51 ms
11,392 KB
testcase_04 AC 63 ms
11,904 KB
testcase_05 AC 378 ms
18,688 KB
testcase_06 AC 36 ms
10,752 KB
testcase_07 AC 385 ms
18,688 KB
testcase_08 AC 234 ms
18,816 KB
testcase_09 AC 228 ms
18,944 KB
testcase_10 AC 405 ms
18,816 KB
testcase_11 AC 45 ms
11,008 KB
testcase_12 AC 37 ms
10,880 KB
testcase_13 AC 37 ms
10,880 KB
testcase_14 AC 40 ms
10,752 KB
testcase_15 AC 37 ms
10,880 KB
testcase_16 AC 46 ms
11,392 KB
testcase_17 AC 46 ms
11,392 KB
testcase_18 AC 300 ms
19,072 KB
testcase_19 AC 389 ms
18,816 KB
testcase_20 AC 376 ms
18,944 KB
testcase_21 AC 364 ms
18,944 KB
testcase_22 AC 383 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

RANGE = 10001
ZERO = 5001
N = int(input())
W = [int(x) for x in input().split()]
dp = [[False for j in range(RANGE)] for i in range(N+1)]
dp[0][ZERO] = True
for i in range(N):
    for j in range(RANGE):
        if dp[i][j] == True:
            if j + W[i] < RANGE:
                dp[i+1][j+W[i]] = True
            if 0 <= j - W[i]:
                dp[i+1][j-W[i]] = True
if dp[N][ZERO]:
    print('possible')
else:
    print('impossible')
0