結果

問題 No.1021 Children in Classrooms
ユーザー ks2mks2m
提出日時 2020-04-10 21:42:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 952 bytes
コンパイル時間 2,690 ms
コンパイル使用メモリ 76,704 KB
実行使用メモリ 59,620 KB
最終ジャッジ日時 2024-09-15 19:45:54
合計ジャッジ時間 7,974 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
39,244 KB
testcase_01 AC 54 ms
39,084 KB
testcase_02 AC 54 ms
39,268 KB
testcase_03 AC 61 ms
39,444 KB
testcase_04 AC 66 ms
39,868 KB
testcase_05 AC 62 ms
39,384 KB
testcase_06 AC 66 ms
39,888 KB
testcase_07 AC 69 ms
40,060 KB
testcase_08 AC 81 ms
40,532 KB
testcase_09 AC 377 ms
59,336 KB
testcase_10 AC 363 ms
59,504 KB
testcase_11 AC 371 ms
59,620 KB
testcase_12 AC 369 ms
59,528 KB
testcase_13 AC 367 ms
59,536 KB
testcase_14 AC 380 ms
59,484 KB
testcase_15 AC 295 ms
54,892 KB
testcase_16 AC 314 ms
54,040 KB
testcase_17 AC 310 ms
54,400 KB
testcase_18 AC 359 ms
58,780 KB
testcase_19 AC 103 ms
41,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		int[] a = new int[600005];
		for (int i = 0; i < n; i++) {
			a[200001 + i] = Integer.parseInt(sa[i]);
		}
		char[] s = br.readLine().toCharArray();
		br.close();

		int l = 200001;
		int r = 200001 + n - 1;
		for (int i = 0; i < m; i++) {
			if (s[i] == 'L') {
				a[l + 1] += a[l];
				a[l] = 0;
				l++;
				r++;
			} else {
				a[r - 1] += a[r];
				a[r] = 0;
				r--;
				l--;
			}
		}

		StringBuilder sb = new StringBuilder();
		for (int i = l; i < l + n; i++) {
			sb.append(a[i]).append(' ');
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());
	}
}
0