結果

問題 No.4 おもりと天秤
ユーザー kokoa1046kokoa1046
提出日時 2017-09-24 09:57:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 285 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 1,253,824 KB
最終ジャッジ日時 2024-11-14 07:05:52
合計ジャッジ時間 50,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 38 ms
12,032 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 MLE -
testcase_06 AC 43 ms
10,624 KB
testcase_07 MLE -
testcase_08 TLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 39 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 32 ms
10,624 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def ILI(): return list(map(int, input().split()))
n = int(input())
wLis = ILI()
half = sum(wLis)/2
lis =[0]
flag =False
for i in wLis:
    lis+=list(map(lambda z:z+i,lis))
    if half in lis:
        flag =True
        break
if flag:
    print("possible")
else:
    print("impossible")
0