結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー tobisatistobisatis
提出日時 2024-03-22 21:37:12
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 2,212 bytes
コンパイル時間 7,531 ms
コンパイル使用メモリ 167,472 KB
実行使用メモリ 224,384 KB
最終ジャッジ日時 2024-09-30 11:04:46
合計ジャッジ時間 16,319 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
30,080 KB
testcase_01 AC 50 ms
29,824 KB
testcase_02 AC 49 ms
30,336 KB
testcase_03 AC 47 ms
29,824 KB
testcase_04 AC 49 ms
30,068 KB
testcase_05 AC 48 ms
30,336 KB
testcase_06 AC 49 ms
30,584 KB
testcase_07 AC 47 ms
29,952 KB
testcase_08 AC 48 ms
30,580 KB
testcase_09 AC 49 ms
30,208 KB
testcase_10 AC 49 ms
30,456 KB
testcase_11 AC 49 ms
30,208 KB
testcase_12 AC 49 ms
30,080 KB
testcase_13 AC 48 ms
30,080 KB
testcase_14 AC 49 ms
30,336 KB
testcase_15 AC 50 ms
30,324 KB
testcase_16 AC 49 ms
30,080 KB
testcase_17 AC 50 ms
30,464 KB
testcase_18 AC 50 ms
30,576 KB
testcase_19 AC 48 ms
30,464 KB
testcase_20 AC 50 ms
30,208 KB
testcase_21 AC 47 ms
30,080 KB
testcase_22 AC 48 ms
30,080 KB
testcase_23 AC 49 ms
30,208 KB
testcase_24 AC 68 ms
41,344 KB
testcase_25 AC 68 ms
40,556 KB
testcase_26 AC 74 ms
43,904 KB
testcase_27 AC 81 ms
47,872 KB
testcase_28 AC 84 ms
49,920 KB
testcase_29 AC 64 ms
37,364 KB
testcase_30 AC 103 ms
62,868 KB
testcase_31 AC 82 ms
48,256 KB
testcase_32 AC 105 ms
64,120 KB
testcase_33 AC 104 ms
63,428 KB
testcase_34 AC 56 ms
32,256 KB
testcase_35 AC 79 ms
46,976 KB
testcase_36 AC 86 ms
51,024 KB
testcase_37 AC 111 ms
66,640 KB
testcase_38 AC 93 ms
57,116 KB
testcase_39 AC 61 ms
35,968 KB
testcase_40 AC 82 ms
48,128 KB
testcase_41 AC 65 ms
39,168 KB
testcase_42 AC 51 ms
30,964 KB
testcase_43 AC 57 ms
33,408 KB
testcase_44 AC 110 ms
66,404 KB
testcase_45 AC 114 ms
66,824 KB
testcase_46 AC 72 ms
40,960 KB
testcase_47 AC 72 ms
43,136 KB
testcase_48 AC 91 ms
49,664 KB
testcase_49 AC 107 ms
52,992 KB
testcase_50 AC 101 ms
52,992 KB
testcase_51 AC 102 ms
52,864 KB
testcase_52 AC 100 ms
52,736 KB
testcase_53 AC 102 ms
53,120 KB
testcase_54 AC 117 ms
69,012 KB
testcase_55 AC 117 ms
69,764 KB
testcase_56 AC 115 ms
69,392 KB
testcase_57 AC 115 ms
69,132 KB
testcase_58 AC 116 ms
69,008 KB
testcase_59 AC 121 ms
69,008 KB
testcase_60 AC 117 ms
69,008 KB
testcase_61 AC 115 ms
69,392 KB
testcase_62 AC 117 ms
69,256 KB
testcase_63 AC 118 ms
69,248 KB
testcase_64 AC 117 ms
69,268 KB
testcase_65 AC 115 ms
69,268 KB
testcase_66 AC 116 ms
69,264 KB
testcase_67 AC 115 ms
69,484 KB
testcase_68 AC 113 ms
69,136 KB
testcase_69 AC 105 ms
63,092 KB
testcase_70 AC 107 ms
62,928 KB
testcase_71 AC 107 ms
62,964 KB
testcase_72 AC 107 ms
63,340 KB
testcase_73 AC 107 ms
62,960 KB
testcase_74 AC 83 ms
47,488 KB
testcase_75 AC 106 ms
224,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (86 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 #

namespace AtCoder;

#nullable enable

using System.Numerics;

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();
}

class AtCoder
{
    object? Solve()
    {
        var n = Int();
        var h = Int();
        var az = n.Repeat(Int);
        var bz = n.Repeat(Int);
        var ans = 0L;
        var av = 0L;
        var ah = 0L;
        var sh = 0L;
        var r = 0;
        for (var l = 0; l < n; l++)
        {
            while (r < n)
            {
                long w = r - l + 1;
                if (w * bz[r] + ah <= h)
                {
                    ah += w * bz[r];
                    sh += bz[r];
                    av += az[r];
                    r++;
                    continue;
                }
                break;
            }
            ans = Math.Max(ans, av);
            av -= az[l];
            ah -= sh;
            sh -= bz[l];
        }
        return ans;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    #pragma warning disable IDE0051
    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
    #pragma warning restore IDE0051
}
0