結果

問題 No.1021 Children in Classrooms
ユーザー n_gojon_gojo
提出日時 2020-04-13 14:25:40
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 981 bytes
コンパイル時間 3,648 ms
コンパイル使用メモリ 77,796 KB
実行使用メモリ 76,596 KB
最終ジャッジ日時 2024-09-24 21:04:20
合計ジャッジ時間 10,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
61,012 KB
testcase_01 AC 119 ms
53,868 KB
testcase_02 AC 123 ms
53,824 KB
testcase_03 AC 265 ms
56,820 KB
testcase_04 AC 280 ms
57,324 KB
testcase_05 AC 250 ms
57,212 KB
testcase_06 AC 267 ms
57,232 KB
testcase_07 AC 306 ms
57,308 KB
testcase_08 AC 297 ms
56,824 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class No1021 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int[] room = new int[n];
        for (int i=0;i<n;i++) {
            room[i]=sc.nextInt();
        }
        String str = sc.next();
        char[] c = str.toCharArray();

        for (char c1 : c) {
            if(c1=='R'){
                for (int i=(n-2);i>=0;i--) {
                    room[i+1]+=room[i];
                    room[i]=0;
                }
            }else{
                for (int i=1;i<n;i++) {
                    room[i-1]+=room[i];
                    room[i]=0;
                }
            }
        }
        System.out.print(room[0]);
        for (int i=1;i<n;i++) {
            System.out.print(' ');
            System.out.print(room[i]);
        }

        System.out.println("");
    }
}
0