結果

問題 No.1701 half price
ユーザー ks2mks2m
提出日時 2021-10-08 22:02:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 902 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 78,128 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-07-23 04:16:07
合計ジャッジ時間 6,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,648 KB
testcase_01 AC 139 ms
41,648 KB
testcase_02 AC 182 ms
41,624 KB
testcase_03 AC 141 ms
41,620 KB
testcase_04 AC 188 ms
41,252 KB
testcase_05 AC 146 ms
41,748 KB
testcase_06 AC 286 ms
43,080 KB
testcase_07 AC 270 ms
42,052 KB
testcase_08 WA -
testcase_09 AC 141 ms
41,016 KB
testcase_10 AC 138 ms
41,344 KB
testcase_11 AC 140 ms
41,292 KB
testcase_12 AC 141 ms
41,240 KB
testcase_13 AC 142 ms
41,384 KB
testcase_14 AC 144 ms
41,128 KB
testcase_15 AC 145 ms
41,120 KB
testcase_16 AC 142 ms
41,648 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 141 ms
41,204 KB
testcase_21 AC 285 ms
42,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int w = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		int ans = 0;
		int end = 1 << n;
		for (int i = 0; i < end; i++) {
			List<Integer> list = new ArrayList<>();
			for (int j = 0; j < n; j++) {
				if ((i >> j & 1) == 1) {
					list.add(a[j]);
				}
			}
			int size = list.size();
			int end2 = 1 << size;
			for (int j = 0; j < end2; j++) {
				long sum = 0;
				for (int j2 = 0; j2 < size; j2++) {
					if ((j >> j2 & 1) == 1) {
						sum += list.get(j2) / 2;
					} else {
						sum += list.get(j2);
					}
				}
				if (sum == w) {
					ans++;
					break;
				}
			}
		}
		System.out.println(ans);
	}
}
0