結果

問題 No.2811 Calculation Within Sequence
ユーザー tentententen
提出日時 2024-07-22 11:22:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,932 bytes
コンパイル時間 2,709 ms
コンパイル使用メモリ 79,680 KB
実行使用メモリ 77,068 KB
最終ジャッジ日時 2024-07-22 11:22:56
合計ジャッジ時間 15,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 53 ms
37,048 KB
testcase_02 AC 51 ms
37,088 KB
testcase_03 AC 535 ms
57,072 KB
testcase_04 AC 309 ms
55,884 KB
testcase_05 AC 507 ms
56,188 KB
testcase_06 AC 803 ms
77,068 KB
testcase_07 AC 552 ms
56,752 KB
testcase_08 AC 730 ms
71,320 KB
testcase_09 AC 647 ms
63,860 KB
testcase_10 AC 714 ms
69,816 KB
testcase_11 AC 1,293 ms
57,192 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static TreeSet<Integer> enables = new TreeSet<>();
    static Set<Integer> disables = new HashSet<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int a = sc.nextInt();
        int b = sc.nextInt();
        while (a-- > 0) {
            enables.add(sc.nextInt());
        }
        boolean enable = true;
        while (b-- > 0 && enable) {
            enable = getEnable(sc.nextInt());
        }
        System.out.println(enable ? "Yes" : "No");
    }
    
    static boolean getEnable(int x) {
        if (enables.contains(x)) {
            return true;
        }
        if (disables.contains(x)) {
            return false;
        }
        Integer key = x;
        while ((key = enables.lower(key)) != null) {
            if (getEnable(x - key)) {
                enables.add(x);
                return true;
            }
        }
        disables.add(x);
        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