結果

問題 No.2155 みちらcolor
ユーザー tentententen
提出日時 2024-07-30 14:44:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 2,277 bytes
コンパイル時間 2,959 ms
コンパイル使用メモリ 78,172 KB
実行使用メモリ 50,548 KB
最終ジャッジ日時 2024-07-30 14:44:17
合計ジャッジ時間 8,720 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,364 KB
testcase_01 AC 59 ms
50,444 KB
testcase_02 AC 50 ms
50,036 KB
testcase_03 AC 50 ms
50,444 KB
testcase_04 AC 54 ms
50,268 KB
testcase_05 AC 51 ms
50,312 KB
testcase_06 AC 55 ms
50,432 KB
testcase_07 AC 50 ms
50,288 KB
testcase_08 AC 55 ms
50,360 KB
testcase_09 AC 52 ms
50,380 KB
testcase_10 AC 52 ms
50,400 KB
testcase_11 AC 50 ms
50,324 KB
testcase_12 AC 52 ms
50,344 KB
testcase_13 AC 49 ms
50,296 KB
testcase_14 AC 50 ms
50,348 KB
testcase_15 AC 50 ms
50,520 KB
testcase_16 AC 50 ms
50,104 KB
testcase_17 AC 49 ms
50,416 KB
testcase_18 AC 56 ms
50,500 KB
testcase_19 AC 53 ms
49,992 KB
testcase_20 AC 51 ms
50,192 KB
testcase_21 AC 51 ms
50,268 KB
testcase_22 AC 51 ms
50,488 KB
testcase_23 AC 54 ms
50,312 KB
testcase_24 AC 53 ms
50,264 KB
testcase_25 AC 53 ms
50,332 KB
testcase_26 AC 52 ms
50,188 KB
testcase_27 AC 49 ms
50,228 KB
testcase_28 AC 52 ms
50,160 KB
testcase_29 AC 50 ms
50,308 KB
testcase_30 AC 49 ms
50,140 KB
testcase_31 AC 50 ms
50,260 KB
testcase_32 AC 51 ms
49,988 KB
testcase_33 AC 50 ms
50,416 KB
testcase_34 AC 61 ms
50,508 KB
testcase_35 AC 56 ms
50,240 KB
testcase_36 AC 52 ms
50,548 KB
testcase_37 AC 53 ms
50,248 KB
testcase_38 AC 59 ms
50,256 KB
testcase_39 AC 54 ms
50,216 KB
testcase_40 AC 54 ms
49,920 KB
testcase_41 AC 59 ms
50,120 KB
testcase_42 AC 59 ms
50,448 KB
testcase_43 AC 54 ms
49,980 KB
testcase_44 AC 52 ms
49,976 KB
testcase_45 AC 51 ms
50,304 KB
testcase_46 AC 51 ms
50,480 KB
testcase_47 AC 51 ms
50,352 KB
testcase_48 AC 53 ms
50,400 KB
testcase_49 AC 51 ms
50,372 KB
testcase_50 AC 49 ms
50,336 KB
testcase_51 AC 51 ms
50,376 KB
testcase_52 AC 52 ms
50,260 KB
testcase_53 AC 53 ms
50,316 KB
testcase_54 AC 52 ms
50,120 KB
testcase_55 AC 55 ms
50,336 KB
testcase_56 AC 53 ms
50,056 KB
testcase_57 AC 53 ms
50,136 KB
testcase_58 AC 53 ms
50,324 KB
testcase_59 AC 54 ms
50,236 KB
testcase_60 AC 53 ms
50,272 KB
testcase_61 AC 51 ms
50,388 KB
testcase_62 AC 52 ms
50,220 KB
testcase_63 AC 52 ms
50,288 KB
testcase_64 AC 52 ms
50,244 KB
testcase_65 AC 52 ms
50,428 KB
testcase_66 AC 52 ms
50,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        BitSet base = new BitSet(1001);
        base.add(sc.nextInt());
        for (int i = 0; i < n && !base.get(m); i++) {
            base.make(sc.nextInt());
        }
        System.out.println(base.get(m) ? "Yes" : "No");
    }
    
    static class BitSet {
        static final int SIZE = 60;
        int length;
        long[] values;
        
        public BitSet(int x) {
            length = (x + SIZE - 1) / SIZE;
            values = new long[length];
        }
        
        public boolean get(int idx) {
            return (values[idx / 60] & (1L << (idx % 60))) > 0;
        }
        
        public void add(int idx) {
            values[idx / 60] |= (1L << (idx % 60));
        }
        
        public void make(int x) {
            BitSet next = new BitSet(1001);
            for (int i = 0; i < length * SIZE; i++) {
                if (get(i)) {
                    next.add((i + x) / 2);
                }
            }
            or(next);
        }
        
        public void or(BitSet b) {
            for (int i = 0; i < length; i++) {
                values[i] |= b.values[i];
            }
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0