結果

問題 No.123 カードシャッフル
ユーザー HimatsubushinHimatsubushin
提出日時 2022-12-23 09:02:21
言語 C#
(.NET 8.0.203)
結果
RE  
実行時間 -
コード長 672 bytes
コンパイル時間 14,865 ms
コンパイル使用メモリ 169,060 KB
実行使用メモリ 199,652 KB
最終ジャッジ日時 2024-11-18 03:57:41
合計ジャッジ時間 19,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,184 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (117 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;

namespace No._39
{
    class Program
    {
        static void Main(string[] args)
        {
            List<int> card = new List<int>();

            int[] num = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
            int n = num[0];
            int k = num[1];
            int i;

            for (i = 0; i < n; i++)
                card.Insert(i, i + 1);

            for (; k > 0; k--)
            {
                i = int.Parse(Console.ReadLine());
                int temp = card[--i];
                card.Remove(card[i]);
                card.Insert(0, temp);
            }

            Console.WriteLine(card[0]);
        }
    }
}
0