結果

問題 No.1535 五七五
ユーザー 小野寺健小野寺健
提出日時 2021-10-30 23:32:31
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 336 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 64,340 KB
最終ジャッジ日時 2024-10-07 13:56:02
合計ジャッジ時間 17,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 77 ms
12,160 KB
testcase_02 AC 81 ms
12,160 KB
testcase_03 AC 83 ms
12,160 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 78 ms
12,288 KB
testcase_08 AC 76 ms
12,160 KB
testcase_09 AC 79 ms
12,160 KB
testcase_10 AC 82 ms
12,160 KB
testcase_11 AC 78 ms
12,160 KB
testcase_12 AC 80 ms
12,160 KB
testcase_13 AC 78 ms
12,160 KB
testcase_14 AC 76 ms
12,032 KB
testcase_15 AC 85 ms
12,032 KB
testcase_16 AC 77 ms
12,288 KB
testcase_17 AC 77 ms
12,288 KB
testcase_18 AC 1,231 ms
61,728 KB
testcase_19 AC 1,157 ms
61,848 KB
testcase_20 AC 1,184 ms
61,736 KB
testcase_21 AC 1,205 ms
61,884 KB
testcase_22 AC 1,225 ms
62,016 KB
testcase_23 AC 1,220 ms
62,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
a, b, c = gets.split(" ").map{|s| s.to_i}

s = [0]
gets.split(" ").map{|s| s.length}.each {|j|
	s << s[-1] + j
}

cnt = 0
1.upto(N-2) {|i|
	y = s[i]
	cnt += 1 if s[0..i-1].bsearch{|x| x >= y - a} == y - a and
		s[i..-1].bsearch{|x| x >= y + b} == y + b and
		s[i+1..-1].bsearch{|x| x >= y + b + c} == y + b + c
}

puts cnt
0