結果

問題 No.1021 Children in Classrooms
ユーザー ntk3264ntk3264
提出日時 2020-04-11 20:14:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 923 ms / 2,000 ms
コード長 993 bytes
コンパイル時間 2,642 ms
コンパイル使用メモリ 79,704 KB
実行使用メモリ 63,024 KB
最終ジャッジ日時 2024-09-19 08:34:44
合計ジャッジ時間 14,312 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,596 KB
testcase_01 AC 136 ms
41,384 KB
testcase_02 AC 120 ms
41,764 KB
testcase_03 AC 198 ms
43,568 KB
testcase_04 AC 212 ms
43,764 KB
testcase_05 AC 206 ms
43,144 KB
testcase_06 AC 201 ms
43,744 KB
testcase_07 AC 213 ms
44,172 KB
testcase_08 AC 212 ms
44,172 KB
testcase_09 AC 890 ms
62,576 KB
testcase_10 AC 915 ms
62,792 KB
testcase_11 AC 923 ms
62,680 KB
testcase_12 AC 880 ms
63,012 KB
testcase_13 AC 865 ms
62,716 KB
testcase_14 AC 840 ms
63,024 KB
testcase_15 AC 736 ms
58,800 KB
testcase_16 AC 767 ms
59,348 KB
testcase_17 AC 742 ms
59,788 KB
testcase_18 AC 807 ms
60,476 KB
testcase_19 AC 227 ms
47,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

    Scanner sc = new Scanner(System.in);

    public static void main(String[] args) {
        new Main().run();
    }

    void run() {
        int n = sc.nextInt();
        int m = sc.nextInt();
        int[] arr = new int[n+m*2];
        for (int i=m; i<n+m; i++) arr[i] = sc.nextInt();
//        List<Integer> list = new ArrayList<>();
//        for (int i=0; i<n; i++) list.add(sc.nextInt());
        char[] order = sc.next().toCharArray();

        int idxS = m;

        for (int i=0; i<m; i++) {
            if (order[i]=='L') {
                arr[idxS+1] += arr[idxS];
                arr[idxS] = 0;
                idxS++;
            } else {
                arr[idxS+n-2] += arr[idxS+n-1];
                arr[idxS+n-1] = 0;
                idxS--;
            }
        }

        StringBuilder sb = new StringBuilder();

        for (int i=idxS; i<idxS+n; i++) sb.append(arr[i]+" ");

        System.out.println(sb.toString());
    }
}
0