結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー 37zigen37zigen
提出日時 2020-03-19 04:31:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 2,759 bytes
コンパイル時間 2,356 ms
コンパイル使用メモリ 77,864 KB
実行使用メモリ 41,300 KB
最終ジャッジ日時 2024-05-08 03:03:16
合計ジャッジ時間 11,603 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
39,432 KB
testcase_01 AC 148 ms
39,784 KB
testcase_02 AC 57 ms
36,408 KB
testcase_03 AC 134 ms
39,784 KB
testcase_04 AC 141 ms
39,724 KB
testcase_05 AC 63 ms
36,964 KB
testcase_06 AC 176 ms
40,236 KB
testcase_07 AC 178 ms
40,176 KB
testcase_08 AC 189 ms
40,236 KB
testcase_09 AC 178 ms
40,272 KB
testcase_10 AC 181 ms
40,376 KB
testcase_11 AC 195 ms
41,300 KB
testcase_12 AC 50 ms
36,540 KB
testcase_13 AC 49 ms
36,688 KB
testcase_14 AC 50 ms
36,424 KB
testcase_15 AC 49 ms
36,592 KB
testcase_16 AC 50 ms
36,648 KB
testcase_17 AC 214 ms
41,176 KB
testcase_18 AC 160 ms
39,884 KB
testcase_19 AC 193 ms
40,076 KB
testcase_20 AC 188 ms
40,544 KB
testcase_21 AC 119 ms
38,904 KB
testcase_22 AC 55 ms
36,540 KB
testcase_23 AC 55 ms
36,700 KB
testcase_24 AC 54 ms
36,436 KB
testcase_25 AC 54 ms
36,388 KB
testcase_26 AC 49 ms
36,408 KB
testcase_27 AC 49 ms
36,744 KB
testcase_28 AC 53 ms
36,784 KB
testcase_29 AC 60 ms
36,648 KB
testcase_30 AC 56 ms
36,596 KB
testcase_31 AC 54 ms
36,592 KB
testcase_32 AC 57 ms
36,596 KB
testcase_33 AC 173 ms
40,524 KB
testcase_34 AC 197 ms
40,536 KB
testcase_35 AC 187 ms
40,456 KB
testcase_36 AC 132 ms
39,284 KB
testcase_37 AC 178 ms
40,592 KB
testcase_38 AC 158 ms
40,036 KB
testcase_39 AC 194 ms
41,052 KB
testcase_40 AC 187 ms
40,660 KB
testcase_41 AC 198 ms
40,512 KB
testcase_42 AC 187 ms
40,352 KB
testcase_43 AC 201 ms
40,684 KB
testcase_44 AC 144 ms
39,432 KB
testcase_45 AC 200 ms
40,488 KB
testcase_46 AC 139 ms
39,500 KB
testcase_47 AC 177 ms
40,228 KB
testcase_48 AC 152 ms
40,512 KB
testcase_49 AC 170 ms
40,068 KB
testcase_50 AC 161 ms
39,812 KB
testcase_51 AC 185 ms
39,976 KB
testcase_52 AC 156 ms
39,796 KB
testcase_53 AC 193 ms
40,424 KB
testcase_54 AC 134 ms
39,368 KB
testcase_55 AC 86 ms
37,676 KB
testcase_56 AC 190 ms
40,752 KB
testcase_57 AC 169 ms
39,600 KB
testcase_58 AC 50 ms
36,520 KB
testcase_59 AC 50 ms
36,384 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