結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー parukiparuki
提出日時 2023-08-07 20:22:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 1,308 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 111,428 KB
実行使用メモリ 40,836 KB
最終ジャッジ日時 2024-12-20 02:50:13
合計ジャッジ時間 4,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,076 KB
testcase_01 AC 26 ms
24,084 KB
testcase_02 AC 26 ms
23,944 KB
testcase_03 AC 56 ms
29,496 KB
testcase_04 AC 31 ms
24,592 KB
testcase_05 AC 78 ms
40,836 KB
testcase_06 AC 44 ms
26,748 KB
testcase_07 AC 34 ms
25,356 KB
testcase_08 AC 38 ms
25,408 KB
testcase_09 AC 42 ms
26,212 KB
testcase_10 AC 52 ms
29,028 KB
testcase_11 AC 44 ms
26,648 KB
testcase_12 AC 35 ms
27,648 KB
testcase_13 AC 32 ms
24,356 KB
testcase_14 AC 33 ms
24,492 KB
testcase_15 AC 32 ms
26,280 KB
testcase_16 AC 31 ms
24,556 KB
testcase_17 AC 32 ms
24,576 KB
testcase_18 AC 31 ms
24,352 KB
testcase_19 AC 31 ms
22,440 KB
testcase_20 AC 32 ms
24,744 KB
testcase_21 AC 31 ms
24,332 KB
testcase_22 AC 31 ms
24,484 KB
testcase_23 AC 30 ms
24,612 KB
testcase_24 AC 32 ms
24,352 KB
testcase_25 AC 33 ms
26,772 KB
testcase_26 AC 30 ms
24,480 KB
testcase_27 AC 32 ms
24,352 KB
testcase_28 AC 31 ms
24,488 KB
testcase_29 AC 31 ms
26,776 KB
testcase_30 AC 30 ms
22,200 KB
testcase_31 AC 32 ms
24,232 KB
testcase_32 AC 31 ms
26,656 KB
testcase_33 AC 26 ms
24,076 KB
testcase_34 AC 32 ms
24,488 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