結果

問題 No.1535 五七五
ユーザー 小野寺健小野寺健
提出日時 2021-10-30 23:28:28
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 315 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 53,632 KB
最終ジャッジ日時 2024-10-07 13:55:26
合計ジャッジ時間 18,131 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
12,032 KB
testcase_01 AC 97 ms
12,160 KB
testcase_02 AC 99 ms
12,160 KB
testcase_03 AC 93 ms
12,288 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 87 ms
12,160 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 86 ms
12,160 KB
testcase_10 AC 86 ms
12,160 KB
testcase_11 AC 86 ms
12,288 KB
testcase_12 AC 86 ms
12,160 KB
testcase_13 AC 86 ms
12,288 KB
testcase_14 AC 86 ms
12,160 KB
testcase_15 AC 86 ms
12,160 KB
testcase_16 AC 85 ms
12,032 KB
testcase_17 AC 86 ms
12,032 KB
testcase_18 AC 1,233 ms
51,328 KB
testcase_19 AC 1,177 ms
51,200 KB
testcase_20 AC 1,197 ms
51,328 KB
testcase_21 AC 1,220 ms
51,328 KB
testcase_22 AC 1,246 ms
51,200 KB
testcase_23 AC 1,236 ms
51,456 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.bsearch{|x| x >= y - a} == y - a and
		s.bsearch{|x| x >= y + b} == y + b and
		s.bsearch{|x| x >= y + b + c} == y + b + c
}

puts cnt
		
0