結果

問題 No.1535 五七五
ユーザー 小野寺健小野寺健
提出日時 2021-10-30 23:56:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 67,216 KB
最終ジャッジ日時 2024-10-07 13:56:35
合計ジャッジ時間 7,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,416 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 559 ms
62,996 KB
testcase_05 AC 629 ms
67,216 KB
testcase_06 AC 551 ms
67,212 KB
testcase_07 AC 80 ms
12,032 KB
testcase_08 AC 79 ms
12,160 KB
testcase_09 AC 80 ms
12,032 KB
testcase_10 AC 80 ms
12,032 KB
testcase_11 AC 78 ms
12,288 KB
testcase_12 AC 79 ms
12,160 KB
testcase_13 AC 80 ms
12,288 KB
testcase_14 AC 78 ms
12,032 KB
testcase_15 AC 77 ms
12,032 KB
testcase_16 AC 81 ms
12,288 KB
testcase_17 AC 80 ms
12,160 KB
testcase_18 AC 507 ms
65,112 KB
testcase_19 AC 491 ms
65,004 KB
testcase_20 AC 503 ms
65,128 KB
testcase_21 AC 509 ms
64,988 KB
testcase_22 AC 501 ms
64,984 KB
testcase_23 AC 491 ms
65,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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


s = {0=>true}
sum = 0
gets.split(" ").map{|s| s.length}.each{|j|
	sum += j
	s[sum] = true
}

cnt = 0
s.each {|y, i|
	cnt += 1 if s.include?(y-a) and s.include?(y+b) and s.include?(y+b+c)
}

puts cnt
0