結果

問題 No.1457 ツブ消ししとるなHard
ユーザー 小野寺健小野寺健
提出日時 2021-04-30 17:52:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,456 bytes
コンパイル時間 4,018 ms
コンパイル使用メモリ 90,380 KB
実行使用メモリ 45,996 KB
最終ジャッジ日時 2024-07-18 14:55:28
合計ジャッジ時間 8,944 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,424 KB
testcase_01 AC 121 ms
40,876 KB
testcase_02 AC 133 ms
41,532 KB
testcase_03 AC 134 ms
41,920 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 134 ms
41,128 KB
testcase_08 AC 119 ms
40,080 KB
testcase_09 AC 147 ms
41,536 KB
testcase_10 AC 149 ms
41,680 KB
testcase_11 AC 125 ms
40,568 KB
testcase_12 AC 145 ms
41,552 KB
testcase_13 AC 268 ms
45,136 KB
testcase_14 AC 166 ms
41,516 KB
testcase_15 AC 416 ms
45,772 KB
testcase_16 AC 127 ms
40,380 KB
testcase_17 AC 132 ms
41,628 KB
testcase_18 AC 131 ms
41,520 KB
testcase_19 WA -
testcase_20 AC 134 ms
41,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;
import java.util.List;
import java.util.ArrayList;
import java.util.Collections;

public class No1457 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		int X = scan.nextInt();
		int Y = scan.nextInt();
		int Z = scan.nextInt();
		List<Integer> A = new ArrayList<Integer>();
		for (int i=0; i < N; i++) {
			A.add(scan.nextInt());
		}
		scan.close();
		Collections.sort(A);
		int remove = Collections.binarySearch(A, Y + 1);
		if (remove < 0) {
			remove = - remove - 1;
		} 
		int remain = Collections.binarySearch(A, X);
		if (remain < 0) {
			remain = - remain - 1;
		}
		int remainN = N - remain;
		if (remainN > M) {
			System.out.println("Handicapped");
			return;
		}
		int remainSum = A.subList(remain, N).stream().mapToInt(Integer::intValue).sum();		
		List<Integer> select = A.subList(remove, remain);
		int min = remainN > 0 ? 0 : 1;
		int max = M - remainN;
		int n = remain - remove;
		int cnt = 0;
		for (int i = min; i < 1 << n; i++) {
			if (Integer.bitCount(i) <= max) {
				int sum = remainSum;
				int sumn = remainN;
				List<Integer> s = new ArrayList<Integer>();
				for (int j = 0; j < n; j++) {
					if (((1 << j) & i) != 0) {
						sum += select.get(j);
						sumn++;
						s.add(select.get(j));
					}
				}
				if (sum == Z * sumn) {
					cnt++;
				}
			}
		}
		System.out.println(cnt);
	}

}
0