結果

問題 No.1021 Children in Classrooms
ユーザー kokatsukokatsu
提出日時 2022-12-15 22:11:45
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 2,531 ms
コンパイル使用メモリ 224,164 KB
実行使用メモリ 24,688 KB
最終ジャッジ日時 2024-06-22 17:05:04
合計ジャッジ時間 5,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 110 ms
22,820 KB
testcase_10 AC 110 ms
22,972 KB
testcase_11 AC 100 ms
23,504 KB
testcase_12 AC 107 ms
24,604 KB
testcase_13 AC 109 ms
22,944 KB
testcase_14 AC 110 ms
22,780 KB
testcase_15 AC 81 ms
20,712 KB
testcase_16 AC 81 ms
20,792 KB
testcase_17 AC 83 ms
21,568 KB
testcase_18 AC 102 ms
24,688 KB
testcase_19 AC 24 ms
9,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N, M;
    readf("%d %d\n", N, M);

    auto a = readln.chomp.split.to!(int[]);

    string S;
    readf("%s\n", S);

    auto d = new DList!int(a);
    foreach (s; S) {
        if (s == 'L') {
            auto f = d.front;
            d.removeFront;
            d.front += f;
            d.insertBack(0);
        }
        else {
            auto b = d.back;
            d.removeBack;
            d.back += b;
            d.insertFront(0);
        }
    }

    auto res = d.array;
    writefln("%(%s %)", res);
}
0