結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー parukiparuki
提出日時 2023-08-07 20:22:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 1,308 bytes
コンパイル時間 843 ms
コンパイル使用メモリ 111,912 KB
実行使用メモリ 32,512 KB
最終ジャッジ日時 2024-05-10 07:26:59
合計ジャッジ時間 3,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,664 KB
testcase_01 AC 25 ms
17,792 KB
testcase_02 AC 25 ms
17,792 KB
testcase_03 AC 52 ms
24,192 KB
testcase_04 AC 31 ms
18,688 KB
testcase_05 AC 74 ms
32,512 KB
testcase_06 AC 40 ms
21,840 KB
testcase_07 AC 33 ms
19,328 KB
testcase_08 AC 36 ms
19,584 KB
testcase_09 AC 39 ms
21,248 KB
testcase_10 AC 50 ms
23,424 KB
testcase_11 AC 43 ms
22,076 KB
testcase_12 AC 33 ms
19,968 KB
testcase_13 AC 31 ms
18,508 KB
testcase_14 AC 31 ms
18,432 KB
testcase_15 AC 30 ms
18,328 KB
testcase_16 AC 29 ms
18,224 KB
testcase_17 AC 32 ms
18,764 KB
testcase_18 AC 30 ms
18,340 KB
testcase_19 AC 30 ms
18,776 KB
testcase_20 AC 29 ms
18,572 KB
testcase_21 AC 30 ms
18,304 KB
testcase_22 AC 31 ms
18,492 KB
testcase_23 AC 30 ms
18,572 KB
testcase_24 AC 30 ms
18,636 KB
testcase_25 AC 31 ms
18,312 KB
testcase_26 AC 30 ms
18,580 KB
testcase_27 AC 31 ms
18,452 KB
testcase_28 AC 31 ms
18,376 KB
testcase_29 AC 30 ms
18,312 KB
testcase_30 AC 29 ms
18,432 KB
testcase_31 AC 30 ms
18,500 KB
testcase_32 AC 30 ms
18,460 KB
testcase_33 AC 24 ms
17,920 KB
testcase_34 AC 31 ms
18,628 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

class Program
{
    static void Main(string[] args)
    {
        int N, K, M1, M2;
        int[] A = new int[0];
        int[] B = new int[0];
        var nk = Array.ConvertAll(Console.ReadLine().Split(' '), int.Parse);
        N = nk[0];
        K = nk[1];
        M1 = int.Parse(Console.ReadLine());
        if(M1>0) A = Array.ConvertAll(Console.ReadLine().Split(' '), int.Parse);
        M2 = int.Parse(Console.ReadLine());
        if(M2>0) B = Array.ConvertAll(Console.ReadLine().Split(' '), int.Parse);

        var C = new int[N + 1];
        foreach(var a in A)
        {
            C[a] = -1;
        }
        foreach(var b in B)
        {
            C[b] = 1;
        }

        var D = new bool[N + 1];
        D[0] = true;

        for(int i=0;i<N;i++)
        {
            if(C[i]==1)
            {
                D[i] = true;
            }
            if(D[i])
            {
                if(C[i+1]!=-1)
                {
                    D[i + 1] = true;
                }
                if(i+K<=N&&C[i+K]!=-1)
                {
                    D[i + K] = true;
                }
            }
        }

        Console.WriteLine(D[N] ? "Yes" : "No");
    }
}
0