結果

問題 No.1701 half price
ユーザー harurunharurun
提出日時 2021-02-22 02:25:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,222 bytes
コンパイル時間 4,386 ms
コンパイル使用メモリ 87,156 KB
実行使用メモリ 58,284 KB
最終ジャッジ日時 2024-07-23 03:26:17
合計ジャッジ時間 8,078 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,728 KB
testcase_01 AC 134 ms
53,832 KB
testcase_02 AC 292 ms
57,876 KB
testcase_03 AC 136 ms
53,952 KB
testcase_04 AC 286 ms
58,176 KB
testcase_05 AC 146 ms
54,280 KB
testcase_06 AC 664 ms
58,228 KB
testcase_07 AC 695 ms
58,284 KB
testcase_08 AC 133 ms
53,908 KB
testcase_09 AC 136 ms
53,980 KB
testcase_10 AC 131 ms
53,864 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 133 ms
54,032 KB
testcase_16 AC 134 ms
53,944 KB
testcase_17 AC 132 ms
54,056 KB
testcase_18 AC 133 ms
54,052 KB
testcase_19 AC 131 ms
53,768 KB
testcase_20 AC 133 ms
53,972 KB
testcase_21 AC 135 ms
53,956 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());
  }
  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