結果

問題 No.3656 Game Scores and Costs
コンテスト
ユーザー 鳩でもわかるC#
提出日時 2026-09-04 22:42:42
言語 C#
(.NET 10.0.400 + ACL)
コンパイル:
dotnet_c
実行:
/usr/bin/dotnet_wrap
結果
AC  
実行時間 161 ms / 2,000 ms
+ 641µs
コード長 2,421 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 7,734 ms
コンパイル使用メモリ 173,172 KB
実行使用メモリ 223,188 KB
最終ジャッジ日時 2026-09-04 22:52:14
合計ジャッジ時間 14,198 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (87 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net10.0/main.dll
  main -> /home/judge/data/code/bin/Release/net10.0/publish/

ソースコード

diff #
raw source code

using System.Diagnostics;
class Program
{
    static string ReadLine() => Console.ReadLine().Trim();
    static int ReadInt() => int.Parse(ReadLine());
    static long ReadLong() => long.Parse(ReadLine());
    static int[] ReadIntArray() { string str = ReadLine(); return str != "" ? str.Split().Select(_ => int.Parse(_)).ToArray() : new int[0]; }
    static long[] ReadLongArray() { string str = ReadLine(); return str != "" ? str.Split().Select(_ => long.Parse(_)).ToArray() : new long[0]; }
    static (int, int) ReadInt2() { int[] vs = ReadIntArray(); return (vs[0], vs[1]); }
    static (int, int, int) ReadInt3() { int[] vs = ReadIntArray(); return (vs[0], vs[1], vs[2]); }
    static (int, int, int, int) ReadInt4() { int[] vs = ReadIntArray(); return (vs[0], vs[1], vs[2], vs[3]); }
    static (int, int, int, int, int) ReadInt5() { int[] vs = ReadIntArray(); return (vs[0], vs[1], vs[2], vs[3], vs[4]); }
    static (long, long) ReadLong2() { long[] vs = ReadLongArray(); return (vs[0], vs[1]); }
    static (long, long, long) ReadLong3() { long[] vs = ReadLongArray(); return (vs[0], vs[1], vs[2]); }

    void F()
    {
        StreamReader sr = new StreamReader(@"z:\index.html");
        string str = sr.ReadToEnd();
        str = str.Replace("><", ">\n<");
        sr.Close();

        StreamWriter sw = new StreamWriter(@"z:\index2.html");
        sw.Write(str);
        sw.Close();
        return;
    }

    static void Main()
    {
        SourceExpander.Expander.Expand();

        (int N, int K, int X) = ReadInt3();
        int[] A = ReadIntArray();

        PriorityQueue<long, long> pq = new PriorityQueue<long, long>();
        long sum = 0;
        long ans = long.MinValue;
        foreach (var v in A)
        {
            pq.Enqueue(v, v);
            sum += v;
            sum -= X;

            if (pq.Count > K)
            { 
                var d = pq.Dequeue();
                sum -= d;
            }
            ans = Math.Max(sum, ans);
        }
        Console.WriteLine(ans);
    }
}
#region Expanded by https://github.com/kzrnm/SourceExpander
namespace SourceExpander{public class Expander{[Conditional("EXP")]public static void Expand(string inputFilePath=null,string outputFilePath=null,bool ignoreAnyError=true){}public static string ExpandString(string inputFilePath=null,bool ignoreAnyError=true){return "";}}}
#endregion Expanded by https://github.com/kzrnm/SourceExpander
0