結果

問題 No.2155 みちらcolor
ユーザー tentententen
提出日時 2022-12-26 09:16:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 1,803 bytes
コンパイル時間 3,037 ms
コンパイル使用メモリ 90,448 KB
実行使用メモリ 54,872 KB
最終ジャッジ日時 2024-11-20 17:15:58
合計ジャッジ時間 11,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
54,232 KB
testcase_01 AC 92 ms
54,036 KB
testcase_02 AC 85 ms
52,072 KB
testcase_03 AC 101 ms
52,008 KB
testcase_04 AC 99 ms
51,992 KB
testcase_05 AC 106 ms
54,252 KB
testcase_06 AC 86 ms
51,340 KB
testcase_07 AC 73 ms
51,032 KB
testcase_08 AC 105 ms
54,056 KB
testcase_09 AC 108 ms
54,128 KB
testcase_10 AC 83 ms
51,616 KB
testcase_11 AC 83 ms
52,304 KB
testcase_12 AC 95 ms
53,876 KB
testcase_13 AC 50 ms
50,476 KB
testcase_14 AC 113 ms
54,108 KB
testcase_15 AC 57 ms
50,544 KB
testcase_16 AC 90 ms
51,676 KB
testcase_17 AC 60 ms
50,528 KB
testcase_18 AC 97 ms
54,132 KB
testcase_19 AC 103 ms
54,340 KB
testcase_20 AC 115 ms
54,196 KB
testcase_21 AC 121 ms
54,280 KB
testcase_22 AC 101 ms
54,140 KB
testcase_23 AC 97 ms
53,992 KB
testcase_24 AC 108 ms
54,596 KB
testcase_25 AC 120 ms
54,084 KB
testcase_26 AC 117 ms
54,556 KB
testcase_27 AC 119 ms
54,284 KB
testcase_28 AC 101 ms
54,436 KB
testcase_29 AC 113 ms
54,056 KB
testcase_30 AC 109 ms
54,388 KB
testcase_31 AC 123 ms
54,656 KB
testcase_32 AC 114 ms
54,580 KB
testcase_33 AC 120 ms
54,268 KB
testcase_34 AC 104 ms
54,028 KB
testcase_35 AC 116 ms
54,088 KB
testcase_36 AC 102 ms
54,356 KB
testcase_37 AC 106 ms
54,168 KB
testcase_38 AC 106 ms
54,192 KB
testcase_39 AC 120 ms
54,080 KB
testcase_40 AC 122 ms
54,872 KB
testcase_41 AC 116 ms
54,328 KB
testcase_42 AC 57 ms
50,508 KB
testcase_43 AC 52 ms
50,152 KB
testcase_44 AC 55 ms
50,496 KB
testcase_45 AC 55 ms
50,376 KB
testcase_46 AC 56 ms
50,324 KB
testcase_47 AC 77 ms
50,948 KB
testcase_48 AC 61 ms
50,472 KB
testcase_49 AC 57 ms
49,996 KB
testcase_50 AC 63 ms
50,348 KB
testcase_51 AC 62 ms
50,536 KB
testcase_52 AC 60 ms
50,136 KB
testcase_53 AC 60 ms
50,276 KB
testcase_54 AC 59 ms
50,440 KB
testcase_55 AC 55 ms
50,268 KB
testcase_56 AC 60 ms
50,508 KB
testcase_57 AC 57 ms
50,420 KB
testcase_58 AC 57 ms
50,276 KB
testcase_59 AC 55 ms
50,376 KB
testcase_60 AC 56 ms
50,480 KB
testcase_61 AC 57 ms
50,420 KB
testcase_62 AC 62 ms
49,928 KB
testcase_63 AC 57 ms
50,420 KB
testcase_64 AC 58 ms
50,428 KB
testcase_65 AC 55 ms
50,040 KB
testcase_66 AC 58 ms
50,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
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();
        HashSet<Integer> current = new HashSet<>();
        current.add(sc.nextInt());
        for (int i = 0; i < n; i++) {
            HashSet<Integer> next = new HashSet<>();
            int x = sc.nextInt();
            for (int y : current) {
                next.add((x + y) / 2);
            }
            current.addAll(next);
        }
        if (current.contains(m)) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
class Utilities {
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0