結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー kakel-sankakel-san
提出日時 2024-03-22 21:59:50
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 1,222 bytes
コンパイル時間 6,625 ms
コンパイル使用メモリ 166,752 KB
実行使用メモリ 220,740 KB
最終ジャッジ日時 2024-09-30 11:31:31
合計ジャッジ時間 15,408 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
29,952 KB
testcase_01 AC 47 ms
29,824 KB
testcase_02 AC 47 ms
30,080 KB
testcase_03 AC 47 ms
29,952 KB
testcase_04 AC 50 ms
30,080 KB
testcase_05 AC 48 ms
30,080 KB
testcase_06 AC 48 ms
30,080 KB
testcase_07 AC 48 ms
30,080 KB
testcase_08 AC 47 ms
30,208 KB
testcase_09 AC 48 ms
29,688 KB
testcase_10 AC 51 ms
30,080 KB
testcase_11 AC 51 ms
29,824 KB
testcase_12 AC 50 ms
30,052 KB
testcase_13 AC 50 ms
29,952 KB
testcase_14 AC 51 ms
30,208 KB
testcase_15 AC 51 ms
30,208 KB
testcase_16 AC 50 ms
30,208 KB
testcase_17 AC 48 ms
30,336 KB
testcase_18 AC 52 ms
29,952 KB
testcase_19 AC 50 ms
29,804 KB
testcase_20 AC 50 ms
30,180 KB
testcase_21 AC 48 ms
29,952 KB
testcase_22 AC 46 ms
30,208 KB
testcase_23 AC 47 ms
30,336 KB
testcase_24 AC 66 ms
40,812 KB
testcase_25 AC 66 ms
39,808 KB
testcase_26 AC 71 ms
43,264 KB
testcase_27 AC 79 ms
47,232 KB
testcase_28 AC 81 ms
49,408 KB
testcase_29 AC 60 ms
35,712 KB
testcase_30 AC 110 ms
65,024 KB
testcase_31 AC 81 ms
47,872 KB
testcase_32 AC 100 ms
54,604 KB
testcase_33 AC 99 ms
54,124 KB
testcase_34 AC 54 ms
32,000 KB
testcase_35 AC 77 ms
46,592 KB
testcase_36 AC 84 ms
50,504 KB
testcase_37 AC 106 ms
56,448 KB
testcase_38 AC 95 ms
54,744 KB
testcase_39 AC 63 ms
35,328 KB
testcase_40 AC 81 ms
47,744 KB
testcase_41 AC 64 ms
38,528 KB
testcase_42 AC 50 ms
30,720 KB
testcase_43 AC 55 ms
32,896 KB
testcase_44 AC 104 ms
56,704 KB
testcase_45 AC 106 ms
56,320 KB
testcase_46 AC 69 ms
40,704 KB
testcase_47 AC 68 ms
42,368 KB
testcase_48 AC 84 ms
49,280 KB
testcase_49 AC 100 ms
52,608 KB
testcase_50 AC 99 ms
52,480 KB
testcase_51 AC 98 ms
52,352 KB
testcase_52 AC 98 ms
52,480 KB
testcase_53 AC 99 ms
52,480 KB
testcase_54 AC 110 ms
58,752 KB
testcase_55 AC 111 ms
58,880 KB
testcase_56 AC 111 ms
58,752 KB
testcase_57 AC 112 ms
58,880 KB
testcase_58 AC 114 ms
59,008 KB
testcase_59 AC 121 ms
58,880 KB
testcase_60 AC 114 ms
58,880 KB
testcase_61 AC 112 ms
58,876 KB
testcase_62 AC 111 ms
58,880 KB
testcase_63 AC 111 ms
58,624 KB
testcase_64 AC 111 ms
58,624 KB
testcase_65 AC 113 ms
59,008 KB
testcase_66 AC 118 ms
58,880 KB
testcase_67 AC 113 ms
58,624 KB
testcase_68 AC 113 ms
58,880 KB
testcase_69 AC 114 ms
66,004 KB
testcase_70 AC 116 ms
65,900 KB
testcase_71 AC 115 ms
65,920 KB
testcase_72 AC 116 ms
66,048 KB
testcase_73 AC 117 ms
65,920 KB
testcase_74 AC 80 ms
46,592 KB
testcase_75 AC 116 ms
220,740 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (80 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;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    // static long[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, h) = (c[0], c[1]);
        var a = NList;
        var b = NList;
        var ans = 0L;
        var left = 0;
        var right = 0;
        var tire = 0L;
        var sat = 0L;
        var diffsum = 0L;
        while (true)
        {
            while (tire > h)
            {
                sat -= a[left];
                tire -= diffsum;
                diffsum -= b[left];
                ++left;
            }
            ans = Math.Max(ans, sat);
            if (right == n) break;
            sat += a[right];
            tire += (right - left + 1L) * b[right];
            diffsum += b[right];
            ++right;
            if (tire <= h) ans = Math.Max(ans, sat);
        }
        WriteLine(ans);
    }
}
0