結果

問題 No.1021 Children in Classrooms
ユーザー htensaihtensai
提出日時 2020-04-30 11:26:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 932 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 76,924 KB
実行使用メモリ 66,340 KB
最終ジャッジ日時 2024-05-08 18:09:42
合計ジャッジ時間 14,624 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,420 KB
testcase_01 AC 125 ms
41,348 KB
testcase_02 AC 122 ms
41,300 KB
testcase_03 AC 192 ms
43,088 KB
testcase_04 AC 195 ms
43,596 KB
testcase_05 AC 192 ms
43,236 KB
testcase_06 AC 209 ms
43,232 KB
testcase_07 AC 205 ms
44,000 KB
testcase_08 AC 210 ms
43,752 KB
testcase_09 AC 887 ms
66,340 KB
testcase_10 AC 932 ms
66,340 KB
testcase_11 AC 896 ms
66,292 KB
testcase_12 AC 886 ms
65,776 KB
testcase_13 AC 890 ms
66,200 KB
testcase_14 AC 793 ms
66,112 KB
testcase_15 AC 801 ms
57,392 KB
testcase_16 AC 776 ms
57,008 KB
testcase_17 AC 804 ms
57,912 KB
testcase_18 AC 854 ms
63,836 KB
testcase_19 AC 254 ms
45,868 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