結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,668 KB
testcase_01 AC 37 ms
54,592 KB
testcase_02 AC 36 ms
55,152 KB
testcase_03 AC 37 ms
55,068 KB
testcase_04 AC 61 ms
85,636 KB
testcase_05 AC 37 ms
54,296 KB
testcase_06 AC 38 ms
54,608 KB
testcase_07 AC 65 ms
82,392 KB
testcase_08 AC 64 ms
85,108 KB
testcase_09 AC 66 ms
85,300 KB
testcase_10 AC 39 ms
54,088 KB
testcase_11 AC 39 ms
54,008 KB
testcase_12 AC 37 ms
54,112 KB
testcase_13 AC 36 ms
54,580 KB
testcase_14 AC 39 ms
54,580 KB
testcase_15 AC 38 ms
54,592 KB
testcase_16 AC 39 ms
54,244 KB
testcase_17 AC 38 ms
54,068 KB
testcase_18 AC 39 ms
53,572 KB
testcase_19 AC 38 ms
54,416 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