結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-08-08 10:55:34
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,627 bytes
コンパイル時間 7,481 ms
コンパイル使用メモリ 166,724 KB
実行使用メモリ 185,904 KB
最終ジャッジ日時 2024-05-10 07:27:42
合計ジャッジ時間 11,163 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
30,080 KB
testcase_01 AC 48 ms
29,952 KB
testcase_02 AC 49 ms
30,336 KB
testcase_03 AC 76 ms
38,912 KB
testcase_04 AC 60 ms
31,988 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 69 ms
33,152 KB
testcase_09 AC 70 ms
34,688 KB
testcase_10 AC 72 ms
38,272 KB
testcase_11 WA -
testcase_12 AC 62 ms
33,024 KB
testcase_13 AC 57 ms
31,616 KB
testcase_14 AC 60 ms
31,872 KB
testcase_15 WA -
testcase_16 AC 59 ms
31,616 KB
testcase_17 AC 60 ms
31,872 KB
testcase_18 AC 58 ms
31,612 KB
testcase_19 AC 57 ms
31,872 KB
testcase_20 AC 57 ms
31,872 KB
testcase_21 AC 48 ms
29,948 KB
testcase_22 AC 61 ms
31,744 KB
testcase_23 AC 62 ms
31,872 KB
testcase_24 AC 59 ms
31,612 KB
testcase_25 AC 60 ms
31,872 KB
testcase_26 AC 61 ms
31,616 KB
testcase_27 AC 61 ms
31,744 KB
testcase_28 AC 57 ms
31,988 KB
testcase_29 AC 60 ms
31,872 KB
testcase_30 WA -
testcase_31 AC 59 ms
31,988 KB
testcase_32 AC 57 ms
31,468 KB
testcase_33 AC 46 ms
30,080 KB
testcase_34 AC 57 ms
185,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (102 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

namespace yukicoder
{
    public class Program
    {
        public static void Main()
        {
            var line = Console.ReadLine().Split(' ');
            var n = int.Parse(line[0]);
            var k = int.Parse(line[1]);
            var m = int.Parse(Console.ReadLine());
            var a = new int[m];
            if (m > 0)
            {
                a = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray();
            }
            var m2 = int.Parse(Console.ReadLine());
            var b = new int[m2];
            if (m2 > 0)
            {
                b = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray();
            }
            var d = new bool[n + 1];
            d[0] = true;
            var j = 0;
            var l = 0;
            for(var i = 1; i <= n; i++)
            {
                if (d[i - 1])
                {
                    d[i] = true;
                }
                else if (i - k >= 0 && d[i - k])
                {
                    d[i] = true;
                }
                if (m > 0 && j < m && i == a[j])
                {
                    d[i] = false;
                    j++;
                }
                else if (m2 > 0 && l < m2 && i == b[l])
                {
                    d[i] = true;
                    l++;
                }
            }
            if (d[n])
            {
                Console.WriteLine("Yes");
            }
            else
            {
                Console.WriteLine("No");
            }
        }
    }
}
0