結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー kakel-sankakel-san
提出日時 2021-10-29 22:04:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 1,823 ms
コンパイル使用メモリ 112,880 KB
実行使用メモリ 60,628 KB
最終ジャッジ日時 2024-10-07 11:23:06
合計ジャッジ時間 13,319 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
19,072 KB
testcase_01 AC 30 ms
19,072 KB
testcase_02 AC 28 ms
19,072 KB
testcase_03 AC 29 ms
19,200 KB
testcase_04 AC 29 ms
19,200 KB
testcase_05 AC 29 ms
18,944 KB
testcase_06 AC 29 ms
19,328 KB
testcase_07 AC 30 ms
19,200 KB
testcase_08 AC 31 ms
19,072 KB
testcase_09 AC 31 ms
19,328 KB
testcase_10 AC 31 ms
19,328 KB
testcase_11 AC 35 ms
19,840 KB
testcase_12 AC 34 ms
19,712 KB
testcase_13 AC 34 ms
19,712 KB
testcase_14 AC 34 ms
19,712 KB
testcase_15 AC 35 ms
19,584 KB
testcase_16 AC 161 ms
43,904 KB
testcase_17 AC 265 ms
57,416 KB
testcase_18 AC 204 ms
48,116 KB
testcase_19 AC 103 ms
34,560 KB
testcase_20 AC 110 ms
35,840 KB
testcase_21 AC 286 ms
60,236 KB
testcase_22 AC 293 ms
60,380 KB
testcase_23 AC 282 ms
60,356 KB
testcase_24 AC 285 ms
60,500 KB
testcase_25 AC 284 ms
60,364 KB
testcase_26 AC 285 ms
60,240 KB
testcase_27 AC 289 ms
60,376 KB
testcase_28 AC 285 ms
60,368 KB
testcase_29 AC 284 ms
60,496 KB
testcase_30 AC 288 ms
60,508 KB
testcase_31 AC 288 ms
60,240 KB
testcase_32 AC 264 ms
60,372 KB
testcase_33 AC 264 ms
60,360 KB
testcase_34 AC 264 ms
60,628 KB
testcase_35 AC 270 ms
60,364 KB
testcase_36 AC 30 ms
19,072 KB
testcase_37 AC 30 ms
19,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using static System.Console;
using System.Linq;

class yuki320
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        var c = NList;
        var (n, k) = (c[0], c[1]);
        var a = NList;
        var b = NList;

        var aisgood = new (int pos, int val)[n];
        for (var i = 0; i < n; ++i) aisgood[i] = (i, a[i] - b[i]);
        Array.Sort(aisgood, (l, r) => r.val.CompareTo(l.val));

        var res = Enumerable.Repeat('B', n).ToArray();
        for (var i = 0; i < k; ++i) res[aisgood[i].pos] = 'A';

        WriteLine(string.Concat(res));
    }
}
0