結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー roarisroaris
提出日時 2021-03-31 21:45:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,856 KB
最終ジャッジ日時 2024-05-09 06:31:44
合計ジャッジ時間 2,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 47 ms
53,632 KB
testcase_03 AC 47 ms
53,504 KB
testcase_04 AC 83 ms
89,856 KB
testcase_05 AC 47 ms
53,632 KB
testcase_06 AC 53 ms
53,888 KB
testcase_07 AC 80 ms
86,144 KB
testcase_08 AC 82 ms
80,896 KB
testcase_09 AC 77 ms
80,640 KB
testcase_10 AC 47 ms
53,376 KB
testcase_11 AC 46 ms
53,376 KB
testcase_12 AC 47 ms
53,376 KB
testcase_13 AC 47 ms
53,120 KB
testcase_14 AC 47 ms
53,248 KB
testcase_15 AC 47 ms
53,504 KB
testcase_16 AC 48 ms
53,888 KB
testcase_17 AC 47 ms
53,248 KB
testcase_18 AC 46 ms
53,248 KB
testcase_19 AC 47 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M, X, Y = map(int, input().split())
A = list(map(int, input().split()))
cnt = 0
l = []

for i in range(N):
    if A[i]>=X:
        cnt += 1
    
    if A[i]>Y:
        l.append(A[i])

if cnt>M:
    print('Handicapped')
    exit()

l.sort(reverse=True)
print(sum(l[:min(len(l), M)]))
0