結果

問題 No.4 おもりと天秤
ユーザー convexineqconvexineq
提出日時 2020-11-22 23:51:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 202 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 53,576 KB
最終ジャッジ日時 2024-07-23 16:49:44
合計ジャッジ時間 2,142 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,120 KB
testcase_01 AC 38 ms
52,332 KB
testcase_02 AC 37 ms
52,036 KB
testcase_03 AC 38 ms
52,408 KB
testcase_04 AC 38 ms
52,768 KB
testcase_05 AC 39 ms
53,576 KB
testcase_06 AC 38 ms
52,688 KB
testcase_07 AC 38 ms
52,164 KB
testcase_08 AC 38 ms
53,064 KB
testcase_09 AC 38 ms
52,304 KB
testcase_10 AC 38 ms
53,084 KB
testcase_11 AC 38 ms
52,488 KB
testcase_12 AC 37 ms
53,236 KB
testcase_13 AC 38 ms
52,184 KB
testcase_14 AC 38 ms
52,184 KB
testcase_15 AC 38 ms
53,296 KB
testcase_16 AC 39 ms
53,492 KB
testcase_17 AC 38 ms
52,012 KB
testcase_18 AC 38 ms
52,564 KB
testcase_19 AC 38 ms
52,824 KB
testcase_20 AC 38 ms
52,372 KB
testcase_21 AC 39 ms
53,556 KB
testcase_22 AC 39 ms
52,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
read = sys.stdin.read

n,*w = map(int,read().split())
dp = 1
for i in w:
    dp |= dp<<i
print("possible" if sum(w)%2==0 and dp>>(sum(w)//2)&1 else "impossible")
0