結果

問題 No.1463 Hungry Kanten
ユーザー MtSakaMtSaka
提出日時 2021-03-08 13:20:53
言語 Java
(openjdk 23)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 776 bytes
コンパイル時間 2,436 ms
コンパイル使用メモリ 75,776 KB
実行使用メモリ 66,672 KB
最終ジャッジ日時 2024-12-23 23:16:06
合計ジャッジ時間 7,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,236 KB
testcase_01 AC 142 ms
41,380 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 538 ms
66,672 KB
testcase_06 AC 144 ms
41,372 KB
testcase_07 AC 140 ms
41,288 KB
testcase_08 AC 142 ms
40,976 KB
testcase_09 AC 140 ms
41,208 KB
testcase_10 AC 139 ms
41,180 KB
testcase_11 AC 130 ms
40,316 KB
testcase_12 AC 144 ms
41,256 KB
testcase_13 AC 146 ms
41,144 KB
testcase_14 AC 169 ms
41,860 KB
testcase_15 AC 134 ms
40,360 KB
testcase_16 AC 187 ms
42,828 KB
testcase_17 AC 212 ms
47,404 KB
testcase_18 AC 185 ms
42,032 KB
testcase_19 AC 316 ms
54,552 KB
testcase_20 AC 321 ms
55,592 KB
testcase_21 AC 142 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n=sc.nextInt();
		long k=sc.nextLong();
		long[] a=new long[n];
		for(int i=0;i<n;i++){
		    a[i] = sc.nextLong();
		}
		Set<Long> target = new HashSet<Long>();
		 for (long i = 0; i < 1 << n; i++) {
		     long sum=0;
		     long cnt=0;
		     long pro=1;
            for (int j = 0; j < n; j++) {
                if ((1 & i >> j) == 1) {
                    sum+=a[j];
                    cnt+=1;
                    pro*=a[j];
                }
            }
            if(cnt>=k){
                target.add(sum);
                target.add(pro);
            }
		 }
		 System.out.println((target.size()));
		 sc.close();
	}
}
0