結果

問題 No.1701 half price
ユーザー merlinmerlin
提出日時 2021-10-08 22:00:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 952 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 77,136 KB
実行使用メモリ 51,600 KB
最終ジャッジ日時 2024-07-23 04:12:59
合計ジャッジ時間 6,843 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,160 KB
testcase_01 AC 55 ms
50,520 KB
testcase_02 AC 153 ms
51,600 KB
testcase_03 AC 56 ms
50,012 KB
testcase_04 AC 147 ms
51,308 KB
testcase_05 AC 58 ms
50,024 KB
testcase_06 AC 796 ms
51,500 KB
testcase_07 AC 778 ms
51,588 KB
testcase_08 WA -
testcase_09 AC 56 ms
50,228 KB
testcase_10 AC 58 ms
50,204 KB
testcase_11 AC 57 ms
50,328 KB
testcase_12 AC 56 ms
50,252 KB
testcase_13 AC 57 ms
50,176 KB
testcase_14 AC 57 ms
49,936 KB
testcase_15 AC 57 ms
50,252 KB
testcase_16 AC 56 ms
50,284 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 57 ms
50,280 KB
testcase_21 AC 921 ms
51,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        String s[]=bu.readLine().split(" ");
        int n=Integer.parseInt(s[0]),w=Integer.parseInt(s[1]);
        int i,j,k,ans=0,m=1<<n,a[]=new int[n];
        s=bu.readLine().split(" ");
        for(i=0;i<n;i++) a[i]=Integer.parseInt(s[i]);

        for(i=0;i<m;i++)
        for(j=0;j<m;j++)
        {
            long wt=0;
            for(k=0;k<n;k++)
            {
                int b1=(i>>k)&1,b2=(j>>k)&1;
                if(b1==0 && b2==1) {wt=-1; break;}
                if(b1==1)
                {
                    if(b2==0) wt+=a[k];
                    else wt+=a[k]/2;
                }
            }
            if(wt==w) {ans++; break;}
        }
        System.out.println(ans);
    }
}
0