結果

問題 No.4 おもりと天秤
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-11-28 07:26:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 581 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 62,976 KB
最終ジャッジ日時 2024-10-05 03:05:29
合計ジャッジ時間 2,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
61,696 KB
testcase_01 AC 50 ms
55,296 KB
testcase_02 AC 51 ms
61,952 KB
testcase_03 AC 51 ms
62,976 KB
testcase_04 AC 49 ms
62,592 KB
testcase_05 AC 53 ms
62,336 KB
testcase_06 AC 48 ms
61,056 KB
testcase_07 AC 57 ms
62,592 KB
testcase_08 AC 47 ms
55,308 KB
testcase_09 AC 60 ms
62,592 KB
testcase_10 AC 59 ms
62,336 KB
testcase_11 AC 52 ms
61,184 KB
testcase_12 AC 52 ms
61,568 KB
testcase_13 AC 52 ms
61,184 KB
testcase_14 AC 53 ms
61,312 KB
testcase_15 AC 51 ms
61,184 KB
testcase_16 AC 53 ms
61,952 KB
testcase_17 AC 53 ms
61,696 KB
testcase_18 AC 59 ms
62,464 KB
testcase_19 AC 63 ms
62,848 KB
testcase_20 AC 57 ms
62,532 KB
testcase_21 AC 60 ms
62,464 KB
testcase_22 AC 60 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from functools import *
from itertools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
W = list(map(int,input().split()))
S = sum(W)
if S%2:
    print('impossible')
    exit()
    
T = S//2
M = 10**4+2
dp = [False]*M
dp[0]=True
dp[W[0]]=True
def f(x):
    return min(x,M-1)
for i in range(N-1):
    w = W[i+1]
    for j in range(M-1,-1,-1):
        if dp[j]:
            dp[f(j+w)]=True
if dp[T]:
    print('possible')
else:
    print('impossible')
0