結果

問題 No.4 おもりと天秤
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-13 10:48:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 365 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 67,456 KB
最終ジャッジ日時 2024-11-30 13:57:39
合計ジャッジ時間 2,338 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,240 KB
testcase_01 AC 47 ms
58,368 KB
testcase_02 AC 51 ms
60,160 KB
testcase_03 AC 51 ms
59,776 KB
testcase_04 AC 51 ms
59,648 KB
testcase_05 AC 67 ms
67,328 KB
testcase_06 AC 47 ms
57,856 KB
testcase_07 AC 68 ms
67,456 KB
testcase_08 AC 64 ms
66,944 KB
testcase_09 AC 63 ms
66,688 KB
testcase_10 AC 68 ms
66,688 KB
testcase_11 AC 49 ms
58,624 KB
testcase_12 AC 47 ms
58,368 KB
testcase_13 AC 48 ms
58,368 KB
testcase_14 AC 48 ms
58,240 KB
testcase_15 AC 48 ms
58,496 KB
testcase_16 AC 49 ms
59,008 KB
testcase_17 AC 48 ms
58,240 KB
testcase_18 AC 65 ms
66,560 KB
testcase_19 AC 66 ms
66,688 KB
testcase_20 AC 67 ms
66,944 KB
testcase_21 AC 68 ms
67,072 KB
testcase_22 AC 66 ms
66,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
sum=sum(a)

dp=[[False]*10010 for i in range(n+1)]
dp[0][0] = True

for i in range(n):
    for j in range(10010):
        if dp[i][j] == False:
            continue
        dp[i+1][j] = True
        dp[i+1][j+a[i]] = True

if dp[-1][sum//2] == True and sum%2 == 0:
    print('possible')
else:
    print('impossible')
0