結果

問題 No.4 おもりと天秤
ユーザー syunsuke1024syunsuke1024
提出日時 2020-05-05 17:00:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-06-26 21:31:19
合計ジャッジ時間 1,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,932 KB
testcase_01 AC 39 ms
52,676 KB
testcase_02 AC 35 ms
51,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
52,704 KB
testcase_06 AC 36 ms
52,184 KB
testcase_07 AC 37 ms
52,672 KB
testcase_08 AC 36 ms
52,268 KB
testcase_09 AC 36 ms
54,024 KB
testcase_10 AC 37 ms
53,416 KB
testcase_11 AC 37 ms
52,752 KB
testcase_12 AC 36 ms
51,752 KB
testcase_13 AC 36 ms
53,056 KB
testcase_14 AC 37 ms
53,712 KB
testcase_15 AC 36 ms
52,316 KB
testcase_16 WA -
testcase_17 AC 36 ms
52,356 KB
testcase_18 WA -
testcase_19 AC 37 ms
53,820 KB
testcase_20 AC 37 ms
52,272 KB
testcase_21 AC 37 ms
52,332 KB
testcase_22 AC 36 ms
52,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
W=list(map(int,input().split()))
if sum(W)%2==1:
    print("impossible")
    exit()
SUM=1
for i in range(N):
    SUM=SUM | SUM<<W[i]
SUM=str(bin(SUM))
SUM=SUM[::-1]
#print(SUM)
if SUM[N//1]=="1":
    print("possible")
else:
    print("impossible")
0