結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー e869120e869120
提出日時 2021-03-31 21:05:28
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 1,276 ms
コンパイル使用メモリ 84,200 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-21 19:10:37
合計ジャッジ時間 1,766 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 33 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 26 ms
4,380 KB
testcase_08 AC 27 ms
4,380 KB
testcase_09 AC 27 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <cmath>
#include <queue>
#include <vector>
#include <string>
#include <algorithm>
#include <functional>
using namespace std;
#pragma warning (disable: 4996)

long long N, M, X, Y;
long long A[1 << 18];

int main() {
	cin >> N >> M >> X >> Y;
	for (int i = 0; i < N; i++) cin >> A[i];
	for (int i = 0; i < N; i++) {
		if (A[i] <= Y) A[i] = 0;
	}
	sort(A, A + N);
	reverse(A, A + N);

	if (A[M] >= X) {
		cout << "Handicapped" << endl;
		return 0;
	}

	long long Sum = 0;
	for (int i = 0; i < M; i++) Sum += A[i];
	cout << Sum << endl;
	return 0;
}
0