結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー convexineqconvexineq
提出日時 2021-05-05 20:55:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 81,608 KB
実行使用メモリ 93,160 KB
最終ジャッジ日時 2024-09-13 13:49:39
合計ジャッジ時間 2,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,084 KB
testcase_01 AC 40 ms
52,312 KB
testcase_02 AC 38 ms
53,240 KB
testcase_03 AC 39 ms
53,816 KB
testcase_04 AC 73 ms
93,160 KB
testcase_05 AC 39 ms
52,356 KB
testcase_06 AC 39 ms
52,784 KB
testcase_07 AC 72 ms
92,032 KB
testcase_08 AC 66 ms
84,104 KB
testcase_09 AC 66 ms
83,184 KB
testcase_10 AC 39 ms
52,112 KB
testcase_11 AC 38 ms
53,016 KB
testcase_12 AC 39 ms
52,712 KB
testcase_13 AC 39 ms
52,188 KB
testcase_14 AC 39 ms
52,120 KB
testcase_15 AC 39 ms
53,540 KB
testcase_16 AC 39 ms
53,440 KB
testcase_17 AC 38 ms
53,196 KB
testcase_18 AC 38 ms
52,236 KB
testcase_19 AC 39 ms
52,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,x,y = map(int,input().split())
*a, = map(int,input().split())
p = [i for i in a if i >= x]
q = [i for i in a if y < i < x]
if len(p) > m:
    print("Handicapped")
    exit()
q.sort(reverse=1)
print(sum(p+q[:m-len(p)]))
0