結果

問題 No.1708 Quality of Contest
ユーザー bluemeganebluemegane
提出日時 2021-10-16 12:39:42
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,279 bytes
コンパイル時間 3,779 ms
コンパイル使用メモリ 114,236 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-09-17 19:22:07
合計ジャッジ時間 11,864 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
25,240 KB
testcase_01 RE -
testcase_02 AC 31 ms
25,188 KB
testcase_03 AC 42 ms
28,272 KB
testcase_04 AC 44 ms
28,088 KB
testcase_05 AC 42 ms
24,120 KB
testcase_06 AC 40 ms
25,864 KB
testcase_07 AC 41 ms
27,892 KB
testcase_08 AC 29 ms
23,092 KB
testcase_09 AC 428 ms
69,504 KB
testcase_10 AC 372 ms
51,408 KB
testcase_11 AC 379 ms
50,264 KB
testcase_12 AC 400 ms
56,916 KB
testcase_13 AC 365 ms
53,772 KB
testcase_14 AC 399 ms
62,160 KB
testcase_15 AC 426 ms
65,008 KB
testcase_16 AC 438 ms
62,968 KB
testcase_17 AC 412 ms
60,000 KB
testcase_18 AC 391 ms
59,500 KB
testcase_19 AC 422 ms
61,264 KB
testcase_20 AC 425 ms
55,504 KB
testcase_21 AC 441 ms
60,820 KB
testcase_22 AC 417 ms
59,564 KB
testcase_23 AC 437 ms
62,736 KB
testcase_24 AC 389 ms
52,476 KB
testcase_25 AC 358 ms
50,500 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        var x = int.Parse(line[2]);
        var d = new Dictionary<int, List<int>>();
        for (int i = 0; i < n; i++)
        {
            line = Console.ReadLine().Trim().Split(' ');
            var a = int.Parse(line[0]);
            var b = int.Parse(line[1]);
            if (!d.ContainsKey(b)) d[b] = new List<int>();
            d[b].Add(a);
        }
        var s = new long[n];
        var p = 0;
        foreach (var y in d)
        {
            var first = true;
            foreach (var z in y.Value.OrderByDescending(z => z))
            {
                if (first) { s[p++] = z + x; first = false; }
                else s[p++] = z;
            }
        }
        Array.Sort(s);
        Array.Reverse(s);
        for (int i = 1; i < n; i++) s[i] = s[i] + s[i - 1];
        Console.ReadLine();
        line = Console.ReadLine().Trim().Split(' ');
        var c = Array.ConvertAll(line, int.Parse);
        var ans = 0L;
        foreach (var y in c) ans += s[y - 1];
        Console.WriteLine(ans);
    }
}
0