結果

問題 No.1535 五七五
ユーザー simansiman
提出日時 2023-02-28 22:13:09
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 693 bytes
コンパイル時間 831 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 245,048 KB
最終ジャッジ日時 2024-09-16 00:07:03
合計ジャッジ時間 21,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
11,904 KB
testcase_01 AC 90 ms
12,032 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 90 ms
11,904 KB
testcase_04 AC 1,942 ms
240,752 KB
testcase_05 AC 1,893 ms
244,972 KB
testcase_06 AC 1,970 ms
245,048 KB
testcase_07 AC 89 ms
12,032 KB
testcase_08 AC 89 ms
12,032 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 90 ms
12,032 KB
testcase_11 AC 89 ms
12,032 KB
testcase_12 AC 89 ms
12,032 KB
testcase_13 AC 88 ms
12,160 KB
testcase_14 AC 91 ms
12,032 KB
testcase_15 AC 91 ms
11,904 KB
testcase_16 AC 92 ms
12,032 KB
testcase_17 AC 93 ms
12,032 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,914 ms
239,608 KB
testcase_23 AC 1,886 ms
237,600 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) { Hash.new { |h, k| h[k] = [] } }

[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|
  queue = []

  E[i][A].each do |v|
    queue << v
  end

  n_que = []

  queue.each do |v|
    next if v >= N

    E[v][B].each do |u|
      n_que << u
    end
  end

  n_que.each do |v|
    next if v >= N

    ans += 1 if E[v][C].size > 0
  end
end

puts ans
0