結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー sushitorunasushitoruna
提出日時 2021-03-22 01:11:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 88,600 KB
最終ジャッジ日時 2024-11-22 21:05:50
合計ジャッジ時間 1,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,016 KB
testcase_01 AC 49 ms
53,744 KB
testcase_02 AC 38 ms
53,180 KB
testcase_03 AC 43 ms
52,944 KB
testcase_04 AC 70 ms
88,600 KB
testcase_05 AC 39 ms
51,696 KB
testcase_06 AC 40 ms
52,920 KB
testcase_07 AC 67 ms
85,736 KB
testcase_08 AC 65 ms
81,856 KB
testcase_09 AC 64 ms
79,868 KB
testcase_10 AC 40 ms
53,020 KB
testcase_11 AC 38 ms
51,824 KB
testcase_12 AC 39 ms
52,472 KB
testcase_13 AC 40 ms
51,816 KB
testcase_14 AC 39 ms
52,076 KB
testcase_15 AC 39 ms
52,804 KB
testcase_16 AC 40 ms
52,804 KB
testcase_17 AC 38 ms
52,836 KB
testcase_18 AC 39 ms
52,860 KB
testcase_19 AC 39 ms
52,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, x, y = map(int, input().split())
a = list(map(int, input().split()))
cnt = ans = 0
v = []

for i in a:
    if i > y:
        v.append(i)
    if i >=x:
        cnt += 1

if cnt > m:
    ans = "Handicapped"
else:
    v.sort(reverse=True)
    for i in range(min(m, len(v))):
        ans += v[i]
        
print(ans)
0