結果

問題 No.1021 Children in Classrooms
ユーザー htensaihtensai
提出日時 2020-04-30 11:26:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 960 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 3,189 ms
コンパイル使用メモリ 77,724 KB
実行使用メモリ 66,904 KB
最終ジャッジ日時 2024-12-15 00:21:04
合計ジャッジ時間 17,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,488 KB
testcase_01 AC 125 ms
41,396 KB
testcase_02 AC 120 ms
39,880 KB
testcase_03 AC 192 ms
43,088 KB
testcase_04 AC 206 ms
43,200 KB
testcase_05 AC 199 ms
42,536 KB
testcase_06 AC 207 ms
43,584 KB
testcase_07 AC 209 ms
43,816 KB
testcase_08 AC 210 ms
44,048 KB
testcase_09 AC 943 ms
66,120 KB
testcase_10 AC 939 ms
66,196 KB
testcase_11 AC 950 ms
66,100 KB
testcase_12 AC 951 ms
66,000 KB
testcase_13 AC 947 ms
66,172 KB
testcase_14 AC 950 ms
65,960 KB
testcase_15 AC 855 ms
57,648 KB
testcase_16 AC 960 ms
58,556 KB
testcase_17 AC 898 ms
59,372 KB
testcase_18 AC 876 ms
66,904 KB
testcase_19 AC 271 ms
46,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        ArrayDeque<Integer> deq = new ArrayDeque<>();
        for (int i = 0; i < n; i++) {
            deq.add(sc.nextInt());
        }
        char[] arr = sc.next().toCharArray();
        for (char c : arr) {
            if (c == 'L') {
                deq.addFirst(deq.pollFirst() + deq.pollFirst());
                deq.addLast(0);
            } else {
                deq.addLast(deq.pollLast() + deq.pollLast());
                deq.addFirst(0);
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            if (i > 0) {
                sb.append(" ");
            }
            sb.append(deq.pollFirst());
        }
        System.out.println(sb);
    }
}
0