結果
問題 |
No.123 カードシャッフル
|
ユーザー |
![]() |
提出日時 | 2016-11-07 10:49:51 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 610 bytes |
コンパイル時間 | 850 ms |
コンパイル使用メモリ | 111,744 KB |
実行使用メモリ | 33,424 KB |
最終ジャッジ日時 | 2024-11-25 03:47:12 |
合計ジャッジ時間 | 1,938 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 WA * 1 |
other | AC * 5 WA * 5 |
コンパイルメッセージ
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++) { if(A[i]!=1) L.Add(L[L.Count - A[i]]); } Console.WriteLine(L[L.Count-1]); } }