結果

問題 No.123 カードシャッフル
ユーザー mbanmban
提出日時 2016-11-07 10:58:57
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 625 bytes
コンパイル時間 752 ms
コンパイル使用メモリ 113,976 KB
実行使用メモリ 32,344 KB
最終ジャッジ日時 2024-11-25 03:47:19
合計ジャッジ時間 1,801 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
27,144 KB
testcase_01 AC 25 ms
25,096 KB
testcase_02 AC 24 ms
25,132 KB
testcase_03 AC 25 ms
25,008 KB
testcase_04 AC 24 ms
25,108 KB
testcase_05 AC 25 ms
25,140 KB
testcase_06 AC 25 ms
25,012 KB
testcase_07 AC 25 ms
24,880 KB
testcase_08 AC 26 ms
25,228 KB
testcase_09 AC 26 ms
25,004 KB
testcase_10 AC 55 ms
31,544 KB
testcase_11 AC 56 ms
30,112 KB
testcase_12 AC 56 ms
32,344 KB
testcase_13 AC 57 ms
30,192 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 Magatro
{
    static void Main()
    {
        int N, M;
        string[] s = Console.ReadLine().Split(' ');
        N = int.Parse(s[0]);
        M = int.Parse(s[1]);
        int[] A = Console.ReadLine().Split(' ').Select(ss => int.Parse(ss)).ToArray();
        List<int> L = new List<int>();
        for(int i = N; i >= 1; i--)
        {
            L.Add(i);
        }
        for(int i = 0; i < M; i++)
        {
            L.Add(L[N - A[i]]);
            L.RemoveAt(N - A[i]);
          
        }
        Console.WriteLine(L[L.Count-1]);
    }
}
0