結果

問題 No.2155 みちらcolor
ユーザー tentententen
提出日時 2023-03-03 08:38:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 1,955 bytes
コンパイル時間 2,542 ms
コンパイル使用メモリ 91,836 KB
実行使用メモリ 55,156 KB
最終ジャッジ日時 2024-09-17 21:50:50
合計ジャッジ時間 10,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,192 KB
testcase_01 AC 98 ms
54,356 KB
testcase_02 AC 85 ms
51,928 KB
testcase_03 AC 90 ms
51,972 KB
testcase_04 AC 88 ms
51,700 KB
testcase_05 AC 99 ms
54,248 KB
testcase_06 AC 83 ms
51,392 KB
testcase_07 AC 63 ms
50,716 KB
testcase_08 AC 96 ms
54,128 KB
testcase_09 AC 98 ms
54,040 KB
testcase_10 AC 89 ms
51,516 KB
testcase_11 AC 83 ms
51,468 KB
testcase_12 AC 83 ms
53,852 KB
testcase_13 AC 49 ms
50,088 KB
testcase_14 AC 95 ms
54,164 KB
testcase_15 AC 53 ms
50,084 KB
testcase_16 AC 83 ms
51,588 KB
testcase_17 AC 55 ms
50,456 KB
testcase_18 AC 90 ms
54,264 KB
testcase_19 AC 98 ms
54,160 KB
testcase_20 AC 111 ms
54,292 KB
testcase_21 AC 105 ms
54,440 KB
testcase_22 AC 101 ms
54,276 KB
testcase_23 AC 90 ms
54,240 KB
testcase_24 AC 113 ms
54,776 KB
testcase_25 AC 109 ms
54,208 KB
testcase_26 AC 108 ms
54,356 KB
testcase_27 AC 106 ms
54,148 KB
testcase_28 AC 107 ms
54,152 KB
testcase_29 AC 107 ms
54,360 KB
testcase_30 AC 102 ms
54,028 KB
testcase_31 AC 102 ms
54,940 KB
testcase_32 AC 106 ms
54,196 KB
testcase_33 AC 106 ms
54,168 KB
testcase_34 AC 106 ms
54,168 KB
testcase_35 AC 100 ms
54,376 KB
testcase_36 AC 99 ms
54,524 KB
testcase_37 AC 113 ms
54,108 KB
testcase_38 AC 105 ms
54,612 KB
testcase_39 AC 108 ms
54,156 KB
testcase_40 AC 106 ms
54,216 KB
testcase_41 AC 106 ms
55,156 KB
testcase_42 AC 54 ms
50,436 KB
testcase_43 AC 50 ms
50,352 KB
testcase_44 AC 50 ms
50,312 KB
testcase_45 AC 51 ms
50,404 KB
testcase_46 AC 48 ms
49,976 KB
testcase_47 AC 57 ms
50,348 KB
testcase_48 AC 53 ms
50,388 KB
testcase_49 AC 49 ms
50,484 KB
testcase_50 AC 54 ms
50,276 KB
testcase_51 AC 55 ms
50,304 KB
testcase_52 AC 52 ms
50,384 KB
testcase_53 AC 54 ms
50,452 KB
testcase_54 AC 53 ms
50,376 KB
testcase_55 AC 49 ms
50,432 KB
testcase_56 AC 54 ms
49,964 KB
testcase_57 AC 51 ms
50,076 KB
testcase_58 AC 51 ms
50,456 KB
testcase_59 AC 50 ms
50,176 KB
testcase_60 AC 50 ms
50,312 KB
testcase_61 AC 59 ms
50,000 KB
testcase_62 AC 60 ms
50,240 KB
testcase_63 AC 57 ms
49,968 KB
testcase_64 AC 57 ms
50,372 KB
testcase_65 AC 54 ms
50,276 KB
testcase_66 AC 57 ms
50,424 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++) {
            int x = sc.nextInt();
            HashSet<Integer> tmp = new HashSet<>();
            for (int y : current) {
                tmp.add((x + y) / 2);
            }
            current.addAll(tmp);
        }
        if (current.contains(m)) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    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