結果

問題 No.4 おもりと天秤
ユーザー tanon710tanon710
提出日時 2019-04-14 03:52:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,940 KB
最終ジャッジ日時 2024-09-15 11:32:17
合計ジャッジ時間 2,644 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 136 ms
27,008 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 145 ms
27,520 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 149 ms
29,940 KB
testcase_11 AC 29 ms
10,496 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 86 ms
18,816 KB
testcase_19 AC 127 ms
25,984 KB
testcase_20 AC 125 ms
25,856 KB
testcase_21 AC 122 ms
25,216 KB
testcase_22 AC 131 ms
26,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
arr=list(map(int,input().split()))
add=sum(arr)
div=int(add/2)
flag=(add)%2
dp=[{} for _ in range(n)]
dp[0][arr[0]]=1
for i in range(1,n):
    for j in dp[i-1].keys():
        dp[i][j]=1
        dp[i][j+arr[i]]=1
if flag==1:
    print('impossible')
else:
    if div in dp[n-1]:
        print('possible')
    else:
        print('impossible')
0