結果

問題 No.1701 half price
ユーザー harurunharurun
提出日時 2021-02-22 02:26:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 656 ms / 3,000 ms
コード長 1,243 bytes
コンパイル時間 2,486 ms
コンパイル使用メモリ 79,012 KB
実行使用メモリ 58,308 KB
最終ジャッジ日時 2024-07-23 03:26:25
合計ジャッジ時間 7,743 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,132 KB
testcase_01 AC 140 ms
53,888 KB
testcase_02 AC 307 ms
58,232 KB
testcase_03 AC 137 ms
53,732 KB
testcase_04 AC 273 ms
58,220 KB
testcase_05 AC 146 ms
53,764 KB
testcase_06 AC 631 ms
57,992 KB
testcase_07 AC 656 ms
58,308 KB
testcase_08 AC 131 ms
54,024 KB
testcase_09 AC 138 ms
53,872 KB
testcase_10 AC 134 ms
54,164 KB
testcase_11 AC 133 ms
53,908 KB
testcase_12 AC 131 ms
53,820 KB
testcase_13 AC 133 ms
54,000 KB
testcase_14 AC 131 ms
53,976 KB
testcase_15 AC 132 ms
54,036 KB
testcase_16 AC 130 ms
53,820 KB
testcase_17 AC 134 ms
53,952 KB
testcase_18 AC 132 ms
54,068 KB
testcase_19 AC 132 ms
53,944 KB
testcase_20 AC 131 ms
53,924 KB
testcase_21 AC 133 ms
53,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.HashSet;
import java.lang.Math;
import java.lang.String;

class Main {
  public static void main(String[] args) {
    Scanner scan=new Scanner(System.in);
    int N,W,m,n,cnt=0,a;
    N=Integer.parseInt(scan.next());
    W=Integer.parseInt(scan.next());
  	ArrayList<Integer> A=new ArrayList<Integer>();
    for(int i=0;i<N;i++){
      a=Integer.parseInt(scan.next());
      if(a==0)cnt++;
      else A.add(a);
    }
  	if(W==0){
  	  System.out.println((int)Math.pow(2,cnt)-1);
  	  return;
  	}
    n=N-cnt;
    m=(int)Math.pow(3,n);
  	HashSet<Integer> ans=new HashSet<Integer>();
    for(int i=0;i<m;i++){
      long s=0;
      int b=0,x=1;
      String u=change(i,3);
      for(int j=0;j<u.length();j++){
      	if(u.charAt(j)=='1'){
      	  s+=A.get(j);
      	  b+=x;
      	}
      	else if(u.charAt(j)=='2'){
      	  s+=A.get(j)/2;
      	  b+=x;
      	}
      	x*=2;
      }
      if(s==W)ans.add(b);
    }
    System.out.println(ans.size()*(int)Math.pow(2,cnt));
  }
  private static String change(int n,int k){
    StringBuilder sb=new StringBuilder();
    while(n!=0){
      sb.append(String.valueOf(n%k));
      n/=k;
    }
    return sb.toString();
  }
}
0