結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー miya145592miya145592
提出日時 2023-05-09 00:06:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 86,132 KB
最終ジャッジ日時 2024-11-25 13:15:45
合計ジャッジ時間 2,373 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,440 KB
testcase_01 AC 41 ms
54,156 KB
testcase_02 AC 41 ms
53,984 KB
testcase_03 AC 42 ms
54,984 KB
testcase_04 AC 69 ms
85,972 KB
testcase_05 AC 41 ms
54,992 KB
testcase_06 AC 44 ms
53,960 KB
testcase_07 AC 65 ms
82,236 KB
testcase_08 AC 69 ms
86,132 KB
testcase_09 AC 69 ms
85,172 KB
testcase_10 AC 44 ms
54,300 KB
testcase_11 AC 42 ms
55,364 KB
testcase_12 AC 42 ms
54,584 KB
testcase_13 AC 43 ms
55,420 KB
testcase_14 AC 42 ms
55,060 KB
testcase_15 AC 43 ms
55,564 KB
testcase_16 AC 42 ms
53,988 KB
testcase_17 AC 41 ms
53,872 KB
testcase_18 AC 43 ms
55,116 KB
testcase_19 AC 43 ms
55,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import bisect
N, M, X, Y = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
A = deque(A)
while A and A[0]<=Y:
    A.popleft()
pos = bisect.bisect_left(A, X)
if len(A)-pos>M:
    print("Handicapped")
    exit()
while len(A)>M:
    A.popleft()
print(sum(A))
0