結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー tsushimatsushima
提出日時 2019-11-30 10:16:40
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 1,385 bytes
コンパイル時間 873 ms
コンパイル使用メモリ 113,004 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-09-14 06:00:28
合計ジャッジ時間 7,839 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
19,584 KB
testcase_01 AC 67 ms
19,328 KB
testcase_02 AC 34 ms
19,584 KB
testcase_03 AC 70 ms
19,568 KB
testcase_04 AC 77 ms
19,584 KB
testcase_05 AC 38 ms
19,456 KB
testcase_06 AC 110 ms
19,584 KB
testcase_07 AC 104 ms
19,584 KB
testcase_08 AC 202 ms
19,712 KB
testcase_09 AC 135 ms
19,584 KB
testcase_10 AC 155 ms
19,840 KB
testcase_11 AC 194 ms
19,840 KB
testcase_12 AC 28 ms
18,816 KB
testcase_13 AC 28 ms
19,072 KB
testcase_14 AC 28 ms
18,944 KB
testcase_15 AC 28 ms
18,816 KB
testcase_16 AC 28 ms
18,816 KB
testcase_17 AC 242 ms
19,712 KB
testcase_18 AC 69 ms
19,712 KB
testcase_19 AC 136 ms
19,584 KB
testcase_20 AC 103 ms
19,712 KB
testcase_21 AC 44 ms
19,200 KB
testcase_22 AC 35 ms
19,584 KB
testcase_23 AC 34 ms
19,456 KB
testcase_24 AC 33 ms
19,456 KB
testcase_25 AC 33 ms
19,328 KB
testcase_26 AC 34 ms
19,328 KB
testcase_27 AC 28 ms
18,816 KB
testcase_28 AC 29 ms
18,944 KB
testcase_29 AC 34 ms
19,456 KB
testcase_30 AC 29 ms
18,688 KB
testcase_31 AC 29 ms
18,816 KB
testcase_32 AC 33 ms
19,200 KB
testcase_33 AC 106 ms
19,712 KB
testcase_34 AC 169 ms
19,968 KB
testcase_35 AC 154 ms
19,840 KB
testcase_36 AC 59 ms
19,328 KB
testcase_37 AC 108 ms
19,584 KB
testcase_38 AC 111 ms
19,584 KB
testcase_39 AC 177 ms
19,968 KB
testcase_40 AC 191 ms
19,712 KB
testcase_41 AC 188 ms
19,840 KB
testcase_42 AC 149 ms
19,840 KB
testcase_43 AC 194 ms
19,840 KB
testcase_44 AC 90 ms
19,840 KB
testcase_45 AC 191 ms
19,712 KB
testcase_46 AC 52 ms
19,456 KB
testcase_47 AC 96 ms
19,712 KB
testcase_48 AC 78 ms
19,712 KB
testcase_49 AC 88 ms
19,584 KB
testcase_50 AC 100 ms
19,584 KB
testcase_51 AC 117 ms
19,584 KB
testcase_52 AC 113 ms
19,712 KB
testcase_53 AC 170 ms
19,712 KB
testcase_54 AC 60 ms
19,584 KB
testcase_55 AC 38 ms
19,200 KB
testcase_56 AC 140 ms
19,712 KB
testcase_57 AC 103 ms
19,712 KB
testcase_58 AC 27 ms
18,944 KB
testcase_59 AC 27 ms
18,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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

namespace Algorithm
{
    class Program
    {
        static void Main(string[] args)
        {
            var N = int.Parse(Console.ReadLine());
            var S = Console.ReadLine();
            var A = Console.ReadLine().Split().Select(int.Parse).ToArray();
            var Q = int.Parse(Console.ReadLine());
            var K = Console.ReadLine().Split().Select(int.Parse).ToArray();

            var acum = new long[N + 1];
            var count = new int[N + 1];

            for (var i = 0; i < N; i++)
            {
                acum[i + 1] = acum[i] + A[i];
                count[i + 1] = count[i] + (S[i] == 'E' ? 1 : 0);
            }

            for (var i = 0; i < Q; i++)
            {
                var ans = 0;
                for (var j = 0; j <= N; j++)
                {
                    var ok = j;
                    var ng = N + 1;

                    while (ng - ok > 1)
                    {
                        var med = (ng + ok) / 2;
                        if (acum[med] - acum[j] <= K[i])
                            ok = med;
                        else
                            ng = med;
                    }

                    ans = Math.Max(ans, count[ok] - count[j]);
                }

                Console.WriteLine(ans);
            }
        }
    }
}
0