結果

問題 No.1535 五七五
ユーザー simansiman
提出日時 2023-02-28 22:19:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 928 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 120,944 KB
最終ジャッジ日時 2024-09-16 00:11:54
合計ジャッジ時間 10,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
11,904 KB
testcase_01 AC 88 ms
11,904 KB
testcase_02 AC 86 ms
11,904 KB
testcase_03 AC 86 ms
11,904 KB
testcase_04 AC 803 ms
112,184 KB
testcase_05 AC 772 ms
120,944 KB
testcase_06 AC 820 ms
120,916 KB
testcase_07 AC 87 ms
12,032 KB
testcase_08 AC 90 ms
12,032 KB
testcase_09 AC 89 ms
12,032 KB
testcase_10 AC 90 ms
12,032 KB
testcase_11 AC 88 ms
12,160 KB
testcase_12 AC 90 ms
12,032 KB
testcase_13 AC 89 ms
12,160 KB
testcase_14 AC 88 ms
12,032 KB
testcase_15 AC 90 ms
12,032 KB
testcase_16 AC 89 ms
12,032 KB
testcase_17 AC 89 ms
11,904 KB
testcase_18 AC 918 ms
116,544 KB
testcase_19 AC 909 ms
116,628 KB
testcase_20 AC 916 ms
116,628 KB
testcase_21 AC 928 ms
116,552 KB
testcase_22 AC 822 ms
116,616 KB
testcase_23 AC 810 ms
116,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A, B, C = gets.split.map(&:to_i)
S = gets.chomp.split.map(&:size)
E = Array.new(N) { {} }

[A, B, C].uniq.each do |x|
  l = 0
  r = 0
  num = S[0]

  while l < N
    if num == x
      E[l][x] = r + 1
    end

    if r == N - 1
      num -= S[l]
      l += 1
    elsif num < x
      r += 1
      num += S[r]
    else
      num -= S[l]
      l += 1
    end
  end
end

ans = 0

N.times do |i|
  cur = i

  next if E[cur][A].nil?
  cur = E[cur][A]

  next if cur >= N
  next if E[cur][B].nil?
  cur = E[cur][B]

  next if cur >= N
  next if E[cur][C].nil?

  ans += 1
end

puts ans
0