結果

問題 No.1021 Children in Classrooms
ユーザー tentententen
提出日時 2022-08-04 13:18:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 422 ms / 2,000 ms
コード長 1,619 bytes
コンパイル時間 2,419 ms
コンパイル使用メモリ 78,556 KB
実行使用メモリ 63,116 KB
最終ジャッジ日時 2024-09-14 09:35:09
合計ジャッジ時間 9,276 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,356 KB
testcase_01 AC 55 ms
50,216 KB
testcase_02 AC 56 ms
49,920 KB
testcase_03 AC 77 ms
51,080 KB
testcase_04 AC 83 ms
51,312 KB
testcase_05 AC 77 ms
51,544 KB
testcase_06 AC 81 ms
51,112 KB
testcase_07 AC 87 ms
51,360 KB
testcase_08 AC 86 ms
51,224 KB
testcase_09 AC 418 ms
62,964 KB
testcase_10 AC 410 ms
63,116 KB
testcase_11 AC 422 ms
53,108 KB
testcase_12 AC 419 ms
53,200 KB
testcase_13 AC 405 ms
53,160 KB
testcase_14 AC 403 ms
53,368 KB
testcase_15 AC 353 ms
49,576 KB
testcase_16 AC 344 ms
49,776 KB
testcase_17 AC 355 ms
48,756 KB
testcase_18 AC 404 ms
52,868 KB
testcase_19 AC 160 ms
43,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

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

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0