結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー 小野寺健小野寺健
提出日時 2021-11-09 11:56:38
言語 Ruby
(3.3.0)
結果
AC  
実行時間 814 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-11-18 08:56:05
合計ジャッジ時間 21,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
12,288 KB
testcase_01 AC 242 ms
12,416 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 259 ms
12,288 KB
testcase_04 AC 281 ms
12,288 KB
testcase_05 AC 99 ms
12,288 KB
testcase_06 AC 432 ms
12,160 KB
testcase_07 AC 394 ms
12,416 KB
testcase_08 AC 814 ms
12,416 KB
testcase_09 AC 548 ms
12,416 KB
testcase_10 AC 620 ms
12,416 KB
testcase_11 AC 761 ms
12,672 KB
testcase_12 AC 81 ms
12,160 KB
testcase_13 AC 78 ms
12,160 KB
testcase_14 AC 79 ms
12,288 KB
testcase_15 AC 77 ms
12,288 KB
testcase_16 AC 79 ms
12,160 KB
testcase_17 AC 359 ms
12,544 KB
testcase_18 AC 224 ms
12,416 KB
testcase_19 AC 504 ms
12,544 KB
testcase_20 AC 363 ms
12,288 KB
testcase_21 AC 124 ms
12,416 KB
testcase_22 AC 88 ms
12,288 KB
testcase_23 AC 76 ms
12,160 KB
testcase_24 AC 80 ms
12,160 KB
testcase_25 AC 82 ms
12,032 KB
testcase_26 AC 78 ms
12,288 KB
testcase_27 AC 79 ms
12,288 KB
testcase_28 AC 80 ms
12,160 KB
testcase_29 AC 83 ms
12,160 KB
testcase_30 AC 79 ms
12,160 KB
testcase_31 AC 79 ms
12,288 KB
testcase_32 AC 82 ms
12,160 KB
testcase_33 AC 408 ms
12,288 KB
testcase_34 AC 657 ms
12,416 KB
testcase_35 AC 593 ms
12,544 KB
testcase_36 AC 196 ms
12,416 KB
testcase_37 AC 396 ms
12,416 KB
testcase_38 AC 417 ms
12,544 KB
testcase_39 AC 695 ms
12,416 KB
testcase_40 AC 767 ms
12,544 KB
testcase_41 AC 739 ms
12,416 KB
testcase_42 AC 565 ms
12,544 KB
testcase_43 AC 772 ms
12,672 KB
testcase_44 AC 315 ms
12,288 KB
testcase_45 AC 756 ms
12,544 KB
testcase_46 AC 155 ms
12,160 KB
testcase_47 AC 364 ms
12,160 KB
testcase_48 AC 278 ms
12,416 KB
testcase_49 AC 317 ms
12,416 KB
testcase_50 AC 366 ms
12,544 KB
testcase_51 AC 437 ms
12,288 KB
testcase_52 AC 419 ms
12,416 KB
testcase_53 AC 653 ms
12,544 KB
testcase_54 AC 196 ms
12,288 KB
testcase_55 AC 101 ms
12,288 KB
testcase_56 AC 530 ms
12,544 KB
testcase_57 AC 377 ms
12,416 KB
testcase_58 AC 80 ms
12,160 KB
testcase_59 AC 77 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

$N = gets.to_i
$S = gets.strip.split("").map{|s| s == "E" ? 1 : 0}
$A = gets.split(" ").map{|s| s.to_i}
Q = gets.to_i
K = gets.split(" ").map{|s| s.to_i}

def maxEnemy(k)
	maxres = 0
	res = 0
	s = t = sum = 0
	loop {
		while t < $N and sum <= k do
			sum += $A[t]
			res += $S[t]
			t += 1
		end
		if sum <= k then
			maxres = res if res > maxres
			break
		end
		maxres = (res - $S[t-1]) if (res - $S[t-1]) > maxres
		sum -= $A[s]
		res -= $S[s]
		s += 1
	}
	maxres
end

K.each {|k|
	puts maxEnemy(k)
}
0