結果

問題 No.4 おもりと天秤
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-13 10:48:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 365 bytes
コンパイル時間 1,729 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 67,328 KB
最終ジャッジ日時 2024-05-07 18:56:51
合計ジャッジ時間 2,412 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,368 KB
testcase_01 AC 45 ms
58,496 KB
testcase_02 AC 44 ms
60,032 KB
testcase_03 AC 44 ms
59,648 KB
testcase_04 AC 50 ms
59,520 KB
testcase_05 AC 66 ms
66,944 KB
testcase_06 AC 46 ms
57,728 KB
testcase_07 AC 67 ms
67,072 KB
testcase_08 AC 66 ms
66,944 KB
testcase_09 AC 62 ms
66,560 KB
testcase_10 AC 65 ms
66,304 KB
testcase_11 AC 48 ms
58,368 KB
testcase_12 AC 48 ms
57,856 KB
testcase_13 AC 47 ms
58,368 KB
testcase_14 AC 43 ms
57,984 KB
testcase_15 AC 42 ms
57,728 KB
testcase_16 AC 43 ms
58,624 KB
testcase_17 AC 43 ms
58,624 KB
testcase_18 AC 56 ms
66,304 KB
testcase_19 AC 58 ms
66,944 KB
testcase_20 AC 66 ms
67,072 KB
testcase_21 AC 64 ms
67,328 KB
testcase_22 AC 64 ms
66,560 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