結果
問題 | No.1021 Children in Classrooms |
ユーザー | ntk3264 |
提出日時 | 2020-04-11 19:54:53 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,077 bytes |
コンパイル時間 | 2,323 ms |
コンパイル使用メモリ | 87,080 KB |
実行使用メモリ | 70,112 KB |
最終ジャッジ日時 | 2024-09-19 07:51:03 |
合計ジャッジ時間 | 7,915 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
46,968 KB |
testcase_01 | AC | 114 ms
40,440 KB |
testcase_02 | AC | 128 ms
41,696 KB |
testcase_03 | AC | 211 ms
43,756 KB |
testcase_04 | AC | 209 ms
44,248 KB |
testcase_05 | AC | 211 ms
43,916 KB |
testcase_06 | AC | 206 ms
44,072 KB |
testcase_07 | AC | 223 ms
44,556 KB |
testcase_08 | AC | 212 ms
44,132 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import java.util.*; public class Main { Scanner sc = new Scanner(System.in); public static void main(String[] args) { new Main().run(); } void run() { int n = sc.nextInt(); int m = sc.nextInt(); // int[] arr = new int[n]; List<Integer> list = new ArrayList<>(); for (int i=0; i<n; i++) list.add(sc.nextInt()); char[] order = sc.next().toCharArray(); for (int i=0; i<m; i++) { if (order[i]=='L') { int tmp = list.get(0)+list.get(1); list.remove(0); list.remove(0); list.add(0, tmp); list.add(0); } else { int tmp = list.get(n-2)+list.get(n-1); list.remove(n-1); list.remove(n-2); list.add(0, 0); list.add(n-1, tmp); } } StringBuilder sb = new StringBuilder(); for (int t: list) { sb.append(t+" "); } System.out.println(sb.toString()); } }