結果
問題 | No.123 カードシャッフル |
ユーザー | mencotton |
提出日時 | 2017-12-31 22:26:42 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 904 ms / 5,000 ms |
コード長 | 815 bytes |
コンパイル時間 | 962 ms |
コンパイル使用メモリ | 110,184 KB |
実行使用メモリ | 39,220 KB |
最終ジャッジ日時 | 2024-06-01 10:11:29 |
合計ジャッジ時間 | 3,918 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
28,336 KB |
testcase_01 | AC | 32 ms
28,512 KB |
testcase_02 | AC | 33 ms
26,548 KB |
testcase_03 | AC | 33 ms
26,292 KB |
testcase_04 | AC | 33 ms
26,028 KB |
testcase_05 | AC | 32 ms
26,548 KB |
testcase_06 | AC | 33 ms
28,332 KB |
testcase_07 | AC | 32 ms
26,156 KB |
testcase_08 | AC | 33 ms
26,292 KB |
testcase_09 | AC | 32 ms
26,292 KB |
testcase_10 | AC | 70 ms
35,932 KB |
testcase_11 | AC | 904 ms
34,936 KB |
testcase_12 | AC | 372 ms
37,052 KB |
testcase_13 | AC | 376 ms
39,220 KB |
コンパイルメッセージ
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; namespace Test { class Program { static void Main(string[] args) { int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray(); int[] a = Console.ReadLine().Split().Select(int.Parse).ToArray(); LinkedList<int> card = new LinkedList<int>(); for (int i = 1; i <= x[0]; i++) card.AddLast(i); for (int i = 0; i < x[1]; i++) { int n = card.First.Value; for (int j = 0; j < a[i] - 1; j++) { n = card.Find(n).Next.Value; } card.Remove(n); card.AddFirst(n); } Console.WriteLine(card.First.Value); } } }