結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー 37zigen37zigen
提出日時 2020-03-19 04:31:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 2,759 bytes
コンパイル時間 2,600 ms
コンパイル使用メモリ 77,988 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-12-14 02:59:37
合計ジャッジ時間 11,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
52,836 KB
testcase_01 AC 151 ms
53,432 KB
testcase_02 AC 60 ms
50,068 KB
testcase_03 AC 146 ms
53,196 KB
testcase_04 AC 152 ms
53,360 KB
testcase_05 AC 77 ms
50,520 KB
testcase_06 AC 171 ms
53,532 KB
testcase_07 AC 178 ms
53,540 KB
testcase_08 AC 199 ms
53,636 KB
testcase_09 AC 170 ms
53,972 KB
testcase_10 AC 176 ms
53,904 KB
testcase_11 AC 202 ms
54,012 KB
testcase_12 AC 54 ms
49,720 KB
testcase_13 AC 55 ms
50,116 KB
testcase_14 AC 52 ms
50,000 KB
testcase_15 AC 53 ms
49,784 KB
testcase_16 AC 57 ms
49,980 KB
testcase_17 AC 220 ms
54,040 KB
testcase_18 AC 158 ms
53,736 KB
testcase_19 AC 183 ms
53,296 KB
testcase_20 AC 185 ms
54,028 KB
testcase_21 AC 130 ms
52,544 KB
testcase_22 AC 68 ms
50,176 KB
testcase_23 AC 60 ms
50,156 KB
testcase_24 AC 60 ms
49,784 KB
testcase_25 AC 60 ms
49,932 KB
testcase_26 AC 56 ms
49,952 KB
testcase_27 AC 56 ms
50,040 KB
testcase_28 AC 61 ms
49,860 KB
testcase_29 AC 62 ms
49,848 KB
testcase_30 AC 57 ms
49,740 KB
testcase_31 AC 57 ms
50,032 KB
testcase_32 AC 61 ms
50,112 KB
testcase_33 AC 181 ms
53,952 KB
testcase_34 AC 200 ms
53,828 KB
testcase_35 AC 193 ms
54,016 KB
testcase_36 AC 140 ms
53,016 KB
testcase_37 AC 186 ms
53,936 KB
testcase_38 AC 177 ms
53,472 KB
testcase_39 AC 184 ms
54,288 KB
testcase_40 AC 188 ms
53,800 KB
testcase_41 AC 201 ms
53,624 KB
testcase_42 AC 188 ms
54,064 KB
testcase_43 AC 190 ms
53,520 KB
testcase_44 AC 151 ms
52,856 KB
testcase_45 AC 197 ms
53,684 KB
testcase_46 AC 137 ms
52,568 KB
testcase_47 AC 182 ms
53,424 KB
testcase_48 AC 176 ms
53,732 KB
testcase_49 AC 172 ms
53,572 KB
testcase_50 AC 176 ms
53,956 KB
testcase_51 AC 166 ms
53,056 KB
testcase_52 AC 175 ms
53,388 KB
testcase_53 AC 181 ms
54,100 KB
testcase_54 AC 132 ms
52,772 KB
testcase_55 AC 99 ms
51,484 KB
testcase_56 AC 179 ms
53,684 KB
testcase_57 AC 179 ms
53,340 KB
testcase_58 AC 53 ms
49,724 KB
testcase_59 AC 55 ms
49,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.NoSuchElementException;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		long t = System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis() - t);
	}

	void run() {
		Scanner sc = new Scanner();
		int N=sc.nextInt();
		char[] cs=sc.next().toCharArray();
		long[] A=new long[N];
		for(int i=0;i<N;++i)A[i]=sc.nextLong();
		int Q=sc.nextInt();
		long[] K=new long[Q];
		for(int q=0;q<Q;++q) {
			K[q]=sc.nextLong();
			int t=0;
			long sum=0;
			int enemy=0;
			int ans=0;
			for(int s=0;s<N;++s) {
				if(t<s)t=s;
				while(t<A.length&&sum+A[t]<=K[q]) {
					sum+=A[t];
					if(cs[t]=='E')++enemy;
					++t;
				}
				ans=Math.max(ans, enemy);
				if(s<t) {
					sum-=A[s];
					if(cs[s]=='E')--enemy;
				}
			}
			System.out.println(ans);
		}
		
	}

	class Scanner {
		private final InputStream in = System.in;
		private final byte[] buffer = new byte[1024];
		private int ptr = 0;
		private int buflen = 0;

		private boolean hasNextByte() {
			if (ptr < buflen) {
				return true;
			} else {
				ptr = 0;
				try {
					buflen = in.read(buffer);
				} catch (IOException e) {
					e.printStackTrace();
				}
				if (buflen <= 0) {
					return false;
				}
			}
			return true;
		}

		private int readByte() {
			if (hasNextByte())
				return buffer[ptr++];
			else
				return -1;
		}

		private boolean isPrintableChar(int c) {
			return 33 <= c && c <= 126;
		}

		private void skipUnprintable() {
			while (hasNextByte() && !isPrintableChar(buffer[ptr]))
				ptr++;
		}

		public boolean hasNext() {
			skipUnprintable();
			return hasNextByte();
		}

		public String next() {
			if (!hasNext())
				throw new NoSuchElementException();
			StringBuilder sb = new StringBuilder();
			int b = readByte();
			while (isPrintableChar(b)) {
				sb.appendCodePoint(b);
				b = readByte();
			}
			return sb.toString();
		}

		public long nextLong() {
			if (!hasNext())
				throw new NoSuchElementException();
			long n = 0;
			boolean minus = false;
			int b = readByte();
			if (b == '-') {
				minus = true;
				b = readByte();
			}
			if (b < '0' || '9' < b) {
				throw new NumberFormatException();
			}
			while (true) {
				if ('0' <= b && b <= '9') {
					n *= 10;
					n += b - '0';
				} else if (b == -1 || !isPrintableChar(b)) {
					return minus ? -n : n;
				} else {
					throw new NumberFormatException();
				}
				b = readByte();
			}
		}

		public int nextInt() {
			return (int) nextLong();
		}
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0