結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー nohakai3nohakai3
提出日時 2022-07-05 18:37:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-05-09 13:42:55
合計ジャッジ時間 1,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 64 ms
20,864 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 58 ms
19,672 KB
testcase_08 AC 61 ms
19,800 KB
testcase_09 AC 59 ms
19,672 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 AC 29 ms
10,880 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

N,M,X,Y = map(int,input().split())
A = list(map(int,input().split()))
A.sort()
y=bisect.bisect_right(A,Y)
x=bisect.bisect_left(A,X)

if N-x>M:
    print("Handicapped")

else:
    l=max(bisect.bisect_left(A,0),N-M,y)
    print(sum(A[l:]))
0