結果

問題 No.1021 Children in Classrooms
ユーザー n_gojon_gojo
提出日時 2020-04-13 15:12:43
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,041 bytes
コンパイル時間 3,309 ms
コンパイル使用メモリ 78,708 KB
実行使用メモリ 82,220 KB
最終ジャッジ日時 2024-09-25 00:58:05
合計ジャッジ時間 9,323 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
61,304 KB
testcase_01 AC 112 ms
53,084 KB
testcase_02 AC 121 ms
54,048 KB
testcase_03 AC 255 ms
57,080 KB
testcase_04 AC 269 ms
57,336 KB
testcase_05 AC 253 ms
57,148 KB
testcase_06 AC 256 ms
57,316 KB
testcase_07 AC 296 ms
57,496 KB
testcase_08 AC 275 ms
57,436 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();
        List<Integer> room = new ArrayList<>();
        for (int i=0;i<n;i++) {
            room.add(sc.nextInt());
        }
        String str = sc.next();
        char[] c = str.toCharArray();

        for (char c1 : c) {
            if(c1=='R'){
                room.set((room.size() - 2), (room.get(room.size() - 1) + room.get(room.size() - 2)));
                room.remove(room.size() - 1);
                room.add(0,0);
            }else{
                room.set(1, (room.get(0) + room.get(1)));
                room.remove(0);
                room.add(0);
            }
        }

        System.out.print(room.get(0));
        for (int i=1;i<n;i++) {
            System.out.print(" ");
            System.out.print(room.get(i));
        }
        System.out.println("");
    }
}
0