結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー tentententen
提出日時 2024-07-31 11:44:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 1,843 bytes
コンパイル時間 2,016 ms
コンパイル使用メモリ 78,832 KB
実行使用メモリ 56,004 KB
最終ジャッジ日時 2024-07-31 11:44:39
合計ジャッジ時間 6,708 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,512 KB
testcase_01 AC 48 ms
49,912 KB
testcase_02 AC 50 ms
50,216 KB
testcase_03 AC 180 ms
55,988 KB
testcase_04 AC 95 ms
51,804 KB
testcase_05 AC 199 ms
56,004 KB
testcase_06 AC 145 ms
54,372 KB
testcase_07 AC 105 ms
51,940 KB
testcase_08 AC 113 ms
52,256 KB
testcase_09 AC 169 ms
54,600 KB
testcase_10 AC 167 ms
55,528 KB
testcase_11 AC 140 ms
54,404 KB
testcase_12 AC 109 ms
51,912 KB
testcase_13 AC 77 ms
51,184 KB
testcase_14 AC 78 ms
51,188 KB
testcase_15 AC 63 ms
50,552 KB
testcase_16 AC 64 ms
50,544 KB
testcase_17 AC 82 ms
51,228 KB
testcase_18 AC 64 ms
51,480 KB
testcase_19 AC 87 ms
51,072 KB
testcase_20 AC 67 ms
50,792 KB
testcase_21 AC 53 ms
50,440 KB
testcase_22 AC 60 ms
50,924 KB
testcase_23 AC 55 ms
50,044 KB
testcase_24 AC 80 ms
51,300 KB
testcase_25 AC 60 ms
50,632 KB
testcase_26 AC 61 ms
50,344 KB
testcase_27 AC 63 ms
50,652 KB
testcase_28 AC 79 ms
51,380 KB
testcase_29 AC 60 ms
50,052 KB
testcase_30 AC 58 ms
50,436 KB
testcase_31 AC 87 ms
51,320 KB
testcase_32 AC 56 ms
50,388 KB
testcase_33 AC 49 ms
49,972 KB
testcase_34 AC 64 ms
51,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        int m1 = sc.nextInt();
        boolean[] isDirty = new boolean[n + 1];
        while (m1-- > 0) {
            isDirty[sc.nextInt()] = true;
        }
        int m2 = sc.nextInt();
        boolean[] isClean = new boolean[n + 1];
        while (m2-- > 0) {
            isClean[sc.nextInt()] = true;
        }
        boolean[] dp = new boolean[n + 1];
        dp[0] = true;
        for (int i = 1; i <= n; i++) {
            if (isClean[i]) {
                dp[i] = true;
                continue;
            }
            if (isDirty[i]) {
                continue;
            }
            dp[i] = dp[i - 1] || (i >= k && dp[i - k]);
        }
        System.out.println(dp[n] ? "Yes" : "No");
    }
}
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