結果

問題 No.2155 みちらcolor
ユーザー tentententen
提出日時 2024-07-11 13:48:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 1,846 bytes
コンパイル時間 2,650 ms
コンパイル使用メモリ 78,580 KB
実行使用メモリ 37,172 KB
最終ジャッジ日時 2024-07-11 13:48:46
合計ジャッジ時間 9,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,640 KB
testcase_01 AC 61 ms
36,916 KB
testcase_02 AC 53 ms
36,800 KB
testcase_03 AC 53 ms
36,892 KB
testcase_04 AC 60 ms
36,908 KB
testcase_05 AC 58 ms
36,924 KB
testcase_06 AC 55 ms
36,968 KB
testcase_07 AC 53 ms
37,016 KB
testcase_08 AC 61 ms
36,784 KB
testcase_09 AC 52 ms
36,824 KB
testcase_10 AC 54 ms
37,092 KB
testcase_11 AC 54 ms
36,876 KB
testcase_12 AC 55 ms
36,660 KB
testcase_13 AC 53 ms
36,944 KB
testcase_14 AC 58 ms
37,036 KB
testcase_15 AC 53 ms
36,916 KB
testcase_16 AC 53 ms
37,108 KB
testcase_17 AC 53 ms
37,004 KB
testcase_18 AC 61 ms
36,824 KB
testcase_19 AC 53 ms
36,944 KB
testcase_20 AC 54 ms
37,072 KB
testcase_21 AC 54 ms
36,996 KB
testcase_22 AC 53 ms
37,144 KB
testcase_23 AC 54 ms
36,712 KB
testcase_24 AC 57 ms
36,776 KB
testcase_25 AC 54 ms
36,912 KB
testcase_26 AC 54 ms
36,980 KB
testcase_27 AC 53 ms
36,728 KB
testcase_28 AC 56 ms
36,900 KB
testcase_29 AC 56 ms
37,084 KB
testcase_30 AC 55 ms
37,024 KB
testcase_31 AC 55 ms
37,016 KB
testcase_32 AC 55 ms
36,904 KB
testcase_33 AC 53 ms
37,096 KB
testcase_34 AC 63 ms
37,064 KB
testcase_35 AC 55 ms
36,872 KB
testcase_36 AC 54 ms
36,776 KB
testcase_37 AC 53 ms
36,876 KB
testcase_38 AC 65 ms
37,172 KB
testcase_39 AC 56 ms
37,000 KB
testcase_40 AC 54 ms
37,152 KB
testcase_41 AC 58 ms
37,144 KB
testcase_42 AC 54 ms
37,172 KB
testcase_43 AC 54 ms
36,660 KB
testcase_44 AC 54 ms
36,868 KB
testcase_45 AC 53 ms
36,892 KB
testcase_46 AC 52 ms
36,480 KB
testcase_47 AC 54 ms
36,948 KB
testcase_48 AC 52 ms
36,852 KB
testcase_49 AC 53 ms
36,788 KB
testcase_50 AC 52 ms
36,644 KB
testcase_51 AC 52 ms
36,888 KB
testcase_52 AC 53 ms
36,828 KB
testcase_53 AC 53 ms
36,648 KB
testcase_54 AC 53 ms
36,680 KB
testcase_55 AC 53 ms
36,916 KB
testcase_56 AC 55 ms
36,776 KB
testcase_57 AC 55 ms
36,808 KB
testcase_58 AC 54 ms
37,016 KB
testcase_59 AC 53 ms
36,636 KB
testcase_60 AC 52 ms
36,972 KB
testcase_61 AC 53 ms
36,876 KB
testcase_62 AC 54 ms
36,932 KB
testcase_63 AC 54 ms
36,732 KB
testcase_64 AC 52 ms
36,868 KB
testcase_65 AC 54 ms
37,116 KB
testcase_66 AC 53 ms
36,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int target;
    static boolean[][] visited;
    static int[] values;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        target = sc.nextInt();
        int start = sc.nextInt();
        values = new int[n];
        for (int i = 0; i < n; i++) {
            values[n - i - 1] = sc.nextInt();
        }
        visited = new boolean[n][1001];
        System.out.println(dfw(n - 1, start) ? "Yes" : "No");
    }
    
    static boolean dfw(int idx, int v) {
        if (v == target) {
            return true;
        }
        if (idx < 0) {
            return false;
        }
        if (!visited[idx][v]) {
            visited[idx][v] = true;
            return dfw(idx - 1, v) || dfw(idx - 1, (v + values[idx]) / 2);
        } else {
            return false;
        }
    }
}
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