結果
| 問題 |
No.123 カードシャッフル
|
| コンテスト | |
| ユーザー |
mban
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 10 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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]);
}
}
mban