結果

問題 No.2155 みちらcolor
ユーザー tentententen
提出日時 2023-04-21 08:29:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 1,979 bytes
コンパイル時間 2,843 ms
コンパイル使用メモリ 95,656 KB
実行使用メモリ 54,860 KB
最終ジャッジ日時 2024-11-06 05:45:54
合計ジャッジ時間 8,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
50,328 KB
testcase_01 AC 104 ms
54,260 KB
testcase_02 AC 57 ms
50,308 KB
testcase_03 AC 59 ms
50,140 KB
testcase_04 AC 99 ms
51,888 KB
testcase_05 AC 65 ms
50,700 KB
testcase_06 AC 62 ms
50,496 KB
testcase_07 AC 56 ms
50,324 KB
testcase_08 AC 95 ms
54,176 KB
testcase_09 AC 57 ms
50,512 KB
testcase_10 AC 66 ms
50,452 KB
testcase_11 AC 57 ms
50,440 KB
testcase_12 AC 82 ms
51,032 KB
testcase_13 AC 56 ms
49,980 KB
testcase_14 AC 57 ms
50,184 KB
testcase_15 AC 57 ms
50,508 KB
testcase_16 AC 57 ms
50,448 KB
testcase_17 AC 56 ms
50,096 KB
testcase_18 AC 102 ms
54,080 KB
testcase_19 AC 58 ms
50,404 KB
testcase_20 AC 60 ms
50,180 KB
testcase_21 AC 61 ms
50,216 KB
testcase_22 AC 58 ms
50,348 KB
testcase_23 AC 89 ms
51,276 KB
testcase_24 AC 93 ms
51,632 KB
testcase_25 AC 56 ms
49,976 KB
testcase_26 AC 59 ms
50,332 KB
testcase_27 AC 58 ms
50,376 KB
testcase_28 AC 59 ms
50,236 KB
testcase_29 AC 60 ms
50,520 KB
testcase_30 AC 59 ms
50,428 KB
testcase_31 AC 58 ms
50,448 KB
testcase_32 AC 56 ms
50,396 KB
testcase_33 AC 58 ms
50,468 KB
testcase_34 AC 118 ms
54,280 KB
testcase_35 AC 81 ms
51,016 KB
testcase_36 AC 58 ms
50,408 KB
testcase_37 AC 57 ms
50,464 KB
testcase_38 AC 115 ms
54,860 KB
testcase_39 AC 64 ms
50,684 KB
testcase_40 AC 58 ms
50,412 KB
testcase_41 AC 99 ms
51,880 KB
testcase_42 AC 57 ms
50,488 KB
testcase_43 AC 56 ms
50,400 KB
testcase_44 AC 57 ms
50,424 KB
testcase_45 AC 56 ms
50,348 KB
testcase_46 AC 58 ms
50,060 KB
testcase_47 AC 59 ms
50,400 KB
testcase_48 AC 57 ms
50,492 KB
testcase_49 AC 55 ms
50,408 KB
testcase_50 AC 56 ms
50,452 KB
testcase_51 AC 63 ms
50,392 KB
testcase_52 AC 57 ms
50,272 KB
testcase_53 AC 62 ms
50,176 KB
testcase_54 AC 59 ms
50,172 KB
testcase_55 AC 56 ms
50,348 KB
testcase_56 AC 58 ms
50,044 KB
testcase_57 AC 57 ms
50,536 KB
testcase_58 AC 59 ms
50,280 KB
testcase_59 AC 56 ms
50,104 KB
testcase_60 AC 56 ms
50,360 KB
testcase_61 AC 56 ms
50,216 KB
testcase_62 AC 60 ms
50,408 KB
testcase_63 AC 57 ms
50,228 KB
testcase_64 AC 57 ms
50,528 KB
testcase_65 AC 56 ms
49,960 KB
testcase_66 AC 56 ms
50,648 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 target = sc.nextInt();
        HashSet<Integer> base = new HashSet<>();
        base.add(sc.nextInt());
        for (int i = 0; i < n && !base.contains(target); i++) {
            HashSet<Integer> next = new HashSet<>();
            int y = sc.nextInt();
            for (int x : base) {
                next.add((x + y) / 2);
            }
            base.addAll(next);
        }
        if (base.contains(target)) {
            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