結果

問題 No.2623 Room Allocation
ユーザー bluemeganebluemegane
提出日時 2024-02-10 11:08:17
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 1,022 bytes
コンパイル時間 6,734 ms
コンパイル使用メモリ 168,364 KB
実行使用メモリ 209,816 KB
最終ジャッジ日時 2024-09-28 17:05:50
合計ジャッジ時間 12,344 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
30,720 KB
testcase_01 AC 50 ms
30,592 KB
testcase_02 AC 50 ms
30,716 KB
testcase_03 AC 49 ms
30,464 KB
testcase_04 AC 48 ms
30,592 KB
testcase_05 AC 49 ms
30,308 KB
testcase_06 AC 158 ms
64,768 KB
testcase_07 AC 148 ms
65,024 KB
testcase_08 AC 140 ms
65,148 KB
testcase_09 AC 147 ms
64,864 KB
testcase_10 AC 159 ms
60,552 KB
testcase_11 AC 216 ms
60,420 KB
testcase_12 AC 136 ms
47,296 KB
testcase_13 AC 108 ms
47,432 KB
testcase_14 AC 262 ms
87,432 KB
testcase_15 AC 113 ms
55,780 KB
testcase_16 AC 76 ms
39,680 KB
testcase_17 AC 48 ms
30,720 KB
testcase_18 AC 113 ms
55,680 KB
testcase_19 AC 111 ms
56,052 KB
testcase_20 AC 116 ms
55,808 KB
testcase_21 AC 117 ms
55,936 KB
testcase_22 AC 104 ms
54,784 KB
testcase_23 AC 84 ms
45,056 KB
testcase_24 AC 114 ms
55,800 KB
testcase_25 AC 112 ms
55,680 KB
testcase_26 AC 68 ms
34,560 KB
testcase_27 AC 262 ms
75,388 KB
testcase_28 AC 167 ms
63,740 KB
testcase_29 AC 151 ms
56,772 KB
testcase_30 AC 237 ms
72,272 KB
testcase_31 AC 82 ms
37,372 KB
testcase_32 AC 153 ms
209,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (85 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System.Linq;
using System;

public class P
{
    public long a { get; set; }
    public long b { get; set; }
}

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var x = int.Parse(line[1]);
        var y = int.Parse(line[2]);
        getAns(n, x, y);
    }
    static void getAns(int n, int x, int y)
    {
        var m = x + y;
        var ps = new P[m];
        for (int i = 0; i < m; i++) ps[i] = new P { };
        for (int i = 0; i < n; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            var p = long.Parse(line[0]);
            var c = line[1];
            if (c == "A") ps[i % m].a += p;
            else ps[i % m].b += p;
        }
        ps = ps.OrderByDescending(z => z.a - z.b).ToArray();
        var ans = 0L;
        for (int i = 0; i < x; i++) ans += ps[i].a;
        for (int i = x; i < m; i++) ans += ps[i].b;
        Console.WriteLine(ans);
    }
}
0