結果

問題 No.1021 Children in Classrooms
ユーザー tentententen
提出日時 2020-08-21 09:48:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 905 ms / 2,000 ms
コード長 848 bytes
コンパイル時間 3,313 ms
コンパイル使用メモリ 86,884 KB
実行使用メモリ 64,536 KB
最終ジャッジ日時 2024-10-14 04:18:58
合計ジャッジ時間 14,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,232 KB
testcase_01 AC 124 ms
41,100 KB
testcase_02 AC 128 ms
41,128 KB
testcase_03 AC 198 ms
43,100 KB
testcase_04 AC 208 ms
43,136 KB
testcase_05 AC 198 ms
42,764 KB
testcase_06 AC 202 ms
43,180 KB
testcase_07 AC 203 ms
43,832 KB
testcase_08 AC 208 ms
43,676 KB
testcase_09 AC 889 ms
64,260 KB
testcase_10 AC 874 ms
64,272 KB
testcase_11 AC 901 ms
64,016 KB
testcase_12 AC 809 ms
64,228 KB
testcase_13 AC 878 ms
64,536 KB
testcase_14 AC 905 ms
64,236 KB
testcase_15 AC 750 ms
57,756 KB
testcase_16 AC 839 ms
57,584 KB
testcase_17 AC 805 ms
58,972 KB
testcase_18 AC 794 ms
63,444 KB
testcase_19 AC 255 ms
45,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	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);
		    }
		}
		boolean isFirst = true;
		StringBuilder sb = new StringBuilder();
		for (int x : deq) {
		    if (isFirst) {
		        isFirst = false;
		    } else {
		        sb.append(" ");
		    }
		    sb.append(x);
		}
		System.out.println(sb);
   }
}

0