結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー mono_0812mono_0812
提出日時 2021-03-31 21:22:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 685 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,916 KB
最終ジャッジ日時 2024-05-09 04:57:38
合計ジャッジ時間 1,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 106 ms
20,916 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 92 ms
19,688 KB
testcase_08 AC 77 ms
19,716 KB
testcase_09 AC 78 ms
19,724 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 31 ms
11,008 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I(): return input()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return map(int,input().split())
def LIIS(): return list(map(int,input().split()))
def ZER(N): return [False for _ in range(N)]
INF=float("inf")
MOD=10**9+7
#     V
#   / ̄ψ ̄\
#  | 合格祈願 |
#  |_____|
##############################################################################
n,m,x,y=IIS()
A=LIIS()
li=[]
sm=0
cnt=0
for i in range(n):
    if A[i]>=x:sm+=A[i];cnt+=1;continue
    elif A[i]<=y:continue
    else:li.append(A[i])
if not cnt<=m:
    print("Handicapped")
    exit()
li.sort(reverse=True)
print(sum(li[:min(m-cnt,len(li))])+sm)
0