結果

問題 No.1701 half price
ユーザー merlinmerlin
提出日時 2021-10-08 22:03:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,136 ms / 3,000 ms
コード長 952 bytes
コンパイル時間 2,453 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 39,492 KB
最終ジャッジ日時 2024-07-23 04:18:38
合計ジャッジ時間 7,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,968 KB
testcase_01 AC 56 ms
36,832 KB
testcase_02 AC 152 ms
38,400 KB
testcase_03 AC 53 ms
36,992 KB
testcase_04 AC 139 ms
38,096 KB
testcase_05 AC 56 ms
36,980 KB
testcase_06 AC 1,136 ms
38,144 KB
testcase_07 AC 1,095 ms
39,492 KB
testcase_08 AC 56 ms
36,956 KB
testcase_09 AC 53 ms
36,504 KB
testcase_10 AC 53 ms
36,980 KB
testcase_11 AC 52 ms
37,060 KB
testcase_12 AC 51 ms
36,952 KB
testcase_13 AC 51 ms
36,952 KB
testcase_14 AC 51 ms
36,636 KB
testcase_15 AC 52 ms
36,508 KB
testcase_16 AC 54 ms
37,044 KB
testcase_17 AC 55 ms
37,096 KB
testcase_18 AC 53 ms
36,904 KB
testcase_19 AC 52 ms
37,168 KB
testcase_20 AC 51 ms
37,048 KB
testcase_21 AC 816 ms
39,416 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=1;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