結果
問題 | No.1021 Children in Classrooms |
ユーザー | suzu |
提出日時 | 2023-05-30 15:10:56 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 620 ms / 2,000 ms |
コード長 | 879 bytes |
コンパイル時間 | 986 ms |
コンパイル使用メモリ | 107,904 KB |
実行使用メモリ | 53,240 KB |
最終ジャッジ日時 | 2024-06-08 20:12:41 |
合計ジャッジ時間 | 8,369 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
20,224 KB |
testcase_01 | AC | 31 ms
20,352 KB |
testcase_02 | AC | 30 ms
20,480 KB |
testcase_03 | AC | 38 ms
21,248 KB |
testcase_04 | AC | 41 ms
21,248 KB |
testcase_05 | AC | 39 ms
21,120 KB |
testcase_06 | AC | 39 ms
21,120 KB |
testcase_07 | AC | 41 ms
21,504 KB |
testcase_08 | AC | 40 ms
21,376 KB |
testcase_09 | AC | 608 ms
49,280 KB |
testcase_10 | AC | 604 ms
49,152 KB |
testcase_11 | AC | 605 ms
49,024 KB |
testcase_12 | AC | 593 ms
49,024 KB |
testcase_13 | AC | 609 ms
49,280 KB |
testcase_14 | AC | 566 ms
49,536 KB |
testcase_15 | AC | 445 ms
50,816 KB |
testcase_16 | AC | 467 ms
50,816 KB |
testcase_17 | AC | 476 ms
49,016 KB |
testcase_18 | AC | 620 ms
53,240 KB |
testcase_19 | AC | 46 ms
24,576 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.Linq; using System.Collections.Generic; namespace yukicoder { class pg { static void Main(string[] args) { var line = Console.ReadLine().Split(' ').Select(c => int.Parse(c)).ToList(); int N = line[0]; int M = line[1]; var nums = Console.ReadLine().Split(' ').Select(c => int.Parse(c)).ToList(); string S = Console.ReadLine(); var linkedList = new LinkedList<int>(nums); for(int i = 0;i < M;i++) { if(S[i] == 'R') { linkedList.AddFirst(0); linkedList.Last.Previous.Value += linkedList.Last.Value; linkedList.RemoveLast(); }else { linkedList.AddLast(0); linkedList.First.Next.Value += linkedList.First.Value; linkedList.RemoveFirst(); } } var ans = linkedList.ToArray(); foreach(int i in ans) { Console.Write(i + " "); } } } }