結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー kokatsukokatsu
提出日時 2021-10-29 21:59:45
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 2,624 ms
コンパイル使用メモリ 214,312 KB
実行使用メモリ 21,900 KB
最終ジャッジ日時 2024-06-22 13:03:29
合計ジャッジ時間 11,276 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 71 ms
14,932 KB
testcase_17 AC 114 ms
17,816 KB
testcase_18 AC 89 ms
21,900 KB
testcase_19 AC 35 ms
9,644 KB
testcase_20 AC 40 ms
9,944 KB
testcase_21 AC 122 ms
18,816 KB
testcase_22 AC 119 ms
18,816 KB
testcase_23 AC 121 ms
18,708 KB
testcase_24 AC 126 ms
18,664 KB
testcase_25 AC 124 ms
18,812 KB
testcase_26 AC 121 ms
18,756 KB
testcase_27 AC 122 ms
18,520 KB
testcase_28 AC 119 ms
18,616 KB
testcase_29 AC 135 ms
18,688 KB
testcase_30 AC 122 ms
18,968 KB
testcase_31 AC 121 ms
18,660 KB
testcase_32 AC 109 ms
18,780 KB
testcase_33 AC 108 ms
18,852 KB
testcase_34 AC 112 ms
18,712 KB
testcase_35 AC 108 ms
18,696 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

struct Cosmetic {
    long num;
    long a;
    long b;
}

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

    auto A = readln.chomp.split.to!(long[]);
    auto B = readln.chomp.split.to!(long[]);

    auto C = new Cosmetic[](N);
    foreach (i; 0 .. N) {
        C[i] = Cosmetic(i, A[i], B[i]);
    }

    C.sort!"a.a - a.b > b.a - b.b";

    auto S = new dchar[](N);
    foreach (i; 0 .. N) {
        if (i < K) {
            S[C[i].num] = 'A';
        }
        else {
            S[C[i].num] = 'B';
        }
    }

    S.writeln;
}
0