結果

問題 No.4 おもりと天秤
ユーザー hiro156jphiro156jp
提出日時 2024-09-01 17:17:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 66,856 KB
最終ジャッジ日時 2024-09-01 17:17:31
合計ジャッジ時間 2,877 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,988 KB
testcase_01 AC 36 ms
53,040 KB
testcase_02 AC 42 ms
58,464 KB
testcase_03 AC 42 ms
59,084 KB
testcase_04 AC 42 ms
58,376 KB
testcase_05 AC 51 ms
63,868 KB
testcase_06 AC 37 ms
53,100 KB
testcase_07 AC 51 ms
63,628 KB
testcase_08 AC 42 ms
59,288 KB
testcase_09 AC 55 ms
66,856 KB
testcase_10 AC 52 ms
64,376 KB
testcase_11 AC 40 ms
58,816 KB
testcase_12 AC 37 ms
53,164 KB
testcase_13 AC 37 ms
52,688 KB
testcase_14 AC 39 ms
58,592 KB
testcase_15 AC 37 ms
52,240 KB
testcase_16 AC 40 ms
57,924 KB
testcase_17 AC 36 ms
52,872 KB
testcase_18 AC 50 ms
62,944 KB
testcase_19 AC 51 ms
64,076 KB
testcase_20 AC 50 ms
63,492 KB
testcase_21 AC 50 ms
64,164 KB
testcase_22 AC 50 ms
63,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
M = sum(A)
memo = [[False]*(M+1) for _ in range(N+1)]
memo[0][0] = True
for i in range(N):
    for j in range(M+1):
        if memo[i][j] ==False:continue
        memo[i+1][j+A[i]] = True
        memo[i+1][abs(j-A[i])] = True
print('possible' if memo[-1][0] == True else 'impossible') 
0