結果

問題 No.123 カードシャッフル
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 22:48:06
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 2,736 bytes
コンパイル時間 965 ms
コンパイル使用メモリ 108,160 KB
実行使用メモリ 25,472 KB
最終ジャッジ日時 2024-10-10 22:48:08
合計ジャッジ時間 2,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
19,328 KB
testcase_01 AC 31 ms
19,200 KB
testcase_02 AC 31 ms
19,328 KB
testcase_03 AC 30 ms
19,328 KB
testcase_04 AC 30 ms
19,328 KB
testcase_05 AC 30 ms
19,328 KB
testcase_06 AC 30 ms
19,328 KB
testcase_07 AC 30 ms
19,328 KB
testcase_08 AC 30 ms
19,328 KB
testcase_09 AC 29 ms
19,328 KB
testcase_10 AC 59 ms
24,448 KB
testcase_11 AC 66 ms
25,472 KB
testcase_12 AC 74 ms
25,472 KB
testcase_13 AC 74 ms
25,472 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;

class Program
{
    static string InputPattern = "InputX";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("3 1");
            WillReturn.Add("2");
            //2
            //最初に1から3までの3枚のカードが積まれています。上から1,2,3の順です。
            //1回目のシャッフルで上から2番目の2の数字のカードを抜いていちばん上に積みます。
            //よって、いちばん上のカードは2になります。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("3 2");
            WillReturn.Add("3 2");
            //1
            //最初に1から3までの3枚のカードが積まれています。上から1,2,3の順です。
            //1回目のシャッフルで上から3番目の3の数字のカードを抜いていちばん上に積みます。
            //カードは上から順に3,1,2の順で積まれています。
            //2回目のシャッフルで上から2番目の1の数字のカードを抜いていちばん上に積みます。
            //よって、いちばん上のカードは1になります。
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("4 4");
            WillReturn.Add("1 1 1 1");
            //1
            //最初に1から4までの4枚のカードが積まれています。上から1,2,3,4の順です。
            //上から1番目のカードを抜いて上に積むシャッフルを4回行います。
            //カードの順番はまったく動きません。よって、いちばん上のカードの数字は1です。
        }
        else if (InputPattern == "Input4") {
            WillReturn.Add("10 8");
            WillReturn.Add("6 10 4 2 7 1 4 3");
            //10
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        int[] wkArr = InputList[0].Split(' ').Select(X => int.Parse(X)).ToArray();
        List<int> NList = Enumerable.Range(1, wkArr[0]).ToList();
        int[] AArr = InputList[1].Split(' ').Select(X => int.Parse(X)).ToArray();

        Action<int> ShuffleAct = (pInd) =>
        {
            int SaveInt = NList[pInd];
            NList.RemoveAt(pInd);
            NList.Insert(0, SaveInt);
        };

        Array.ForEach(AArr, X => ShuffleAct(X - 1));
        Console.WriteLine(NList[0]);
    }
}

0