結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー bluemeganebluemegane
提出日時 2021-10-30 09:21:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 855 bytes
コンパイル時間 1,063 ms
コンパイル使用メモリ 114,648 KB
実行使用メモリ 72,292 KB
最終ジャッジ日時 2024-10-07 13:29:50
合計ジャッジ時間 13,883 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
25,204 KB
testcase_01 AC 30 ms
24,880 KB
testcase_02 AC 30 ms
27,512 KB
testcase_03 AC 27 ms
27,108 KB
testcase_04 AC 30 ms
27,256 KB
testcase_05 AC 29 ms
23,220 KB
testcase_06 AC 30 ms
25,196 KB
testcase_07 AC 30 ms
25,348 KB
testcase_08 AC 30 ms
25,080 KB
testcase_09 AC 31 ms
25,192 KB
testcase_10 AC 30 ms
25,216 KB
testcase_11 AC 33 ms
25,576 KB
testcase_12 AC 35 ms
27,580 KB
testcase_13 AC 34 ms
27,640 KB
testcase_14 AC 34 ms
27,644 KB
testcase_15 AC 35 ms
25,536 KB
testcase_16 AC 188 ms
52,748 KB
testcase_17 AC 277 ms
67,752 KB
testcase_18 AC 168 ms
60,292 KB
testcase_19 AC 99 ms
41,352 KB
testcase_20 AC 113 ms
42,052 KB
testcase_21 AC 292 ms
72,056 KB
testcase_22 AC 231 ms
69,732 KB
testcase_23 AC 308 ms
71,912 KB
testcase_24 AC 250 ms
67,680 KB
testcase_25 AC 249 ms
70,136 KB
testcase_26 AC 290 ms
69,860 KB
testcase_27 AC 293 ms
71,940 KB
testcase_28 AC 243 ms
69,856 KB
testcase_29 AC 292 ms
69,992 KB
testcase_30 AC 298 ms
69,884 KB
testcase_31 AC 205 ms
71,944 KB
testcase_32 AC 254 ms
72,292 KB
testcase_33 AC 267 ms
72,064 KB
testcase_34 AC 256 ms
65,728 KB
testcase_35 AC 252 ms
69,876 KB
testcase_36 AC 30 ms
25,212 KB
testcase_37 AC 27 ms
24,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System;

public class P
{
    public int amb { get; set; }
    public int id { get; set; }
}

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var k = int.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        string[] line2 = Console.ReadLine().Trim().Split(' ');
        var ps = new P[n];
        for (int i = 0; i < n; i++)
            ps[i] = new P { id = i, amb = int.Parse(line[i]) - int.Parse(line2[i]) };
        getAns(n, k, ps);
    }
    static void getAns(int n, int k, P[] ps)
    {
        var ans = Enumerable.Repeat('B', n).ToArray();
        foreach (var x in ps.OrderByDescending(x => x.amb).Take(k))
            ans[x.id] = 'A';
        Console.WriteLine(new string(ans));
    }
}
0