結果

問題 No.2247 01 ZigZag
ユーザー simansiman
提出日時 2023-03-18 16:19:13
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 1,241 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-09-18 13:24:14
合計ジャッジ時間 6,242 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,288 KB
testcase_01 AC 80 ms
12,160 KB
testcase_02 AC 87 ms
13,824 KB
testcase_03 AC 119 ms
13,824 KB
testcase_04 AC 83 ms
13,056 KB
testcase_05 AC 79 ms
12,160 KB
testcase_06 AC 103 ms
12,928 KB
testcase_07 AC 83 ms
12,416 KB
testcase_08 AC 117 ms
13,824 KB
testcase_09 AC 127 ms
13,440 KB
testcase_10 AC 95 ms
13,312 KB
testcase_11 AC 104 ms
12,800 KB
testcase_12 AC 86 ms
12,544 KB
testcase_13 AC 94 ms
12,672 KB
testcase_14 AC 82 ms
12,544 KB
testcase_15 AC 85 ms
12,544 KB
testcase_16 AC 95 ms
12,672 KB
testcase_17 AC 145 ms
14,848 KB
testcase_18 AC 87 ms
13,440 KB
testcase_19 AC 90 ms
14,208 KB
testcase_20 AC 87 ms
13,440 KB
testcase_21 AC 89 ms
12,416 KB
testcase_22 AC 107 ms
13,568 KB
testcase_23 AC 99 ms
12,800 KB
testcase_24 AC 87 ms
13,824 KB
testcase_25 AC 115 ms
13,696 KB
testcase_26 AC 96 ms
12,928 KB
testcase_27 AC 78 ms
12,160 KB
testcase_28 AC 125 ms
14,720 KB
testcase_29 AC 135 ms
14,336 KB
testcase_30 AC 125 ms
13,568 KB
testcase_31 AC 79 ms
12,544 KB
testcase_32 AC 108 ms
13,440 KB
testcase_33 AC 93 ms
12,928 KB
testcase_34 AC 89 ms
12,928 KB
testcase_35 AC 81 ms
12,288 KB
testcase_36 AC 98 ms
13,440 KB
testcase_37 AC 84 ms
12,288 KB
testcase_38 AC 84 ms
12,416 KB
testcase_39 AC 95 ms
12,800 KB
testcase_40 AC 94 ms
13,952 KB
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 78 ms
12,160 KB
testcase_44 AC 74 ms
12,160 KB
testcase_45 AC 145 ms
14,720 KB
testcase_46 AC 141 ms
14,976 KB
testcase_47 RE -
testcase_48 RE -
testcase_49 AC 76 ms
12,160 KB
testcase_50 AC 75 ms
12,288 KB
testcase_51 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:87: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

N, M, K = gets.split.map(&:to_i)

def f(n, m, k)
  zero_stack = []
  one_stack = []

  (k + 1).times do |i|
    if i.even?
      zero_stack << 1
    else
      one_stack << 1
    end
  end

  if zero_stack.size > n
    return false
  end

  if one_stack.size > m
    return false
  end

  zero_stack[0] += n - zero_stack.size
  one_stack[-1] += m - one_stack.size

  res = ''
  i = 0

  while zero_stack.size > 0 || one_stack.size > 0
    if i.even?
      res << '0' * zero_stack.shift
    else
      res << '1' * one_stack.shift
    end

    i += 1
  end

  res
end

def g(n, m, k)
  zero_stack = []
  one_stack = []

  (k + 1).times do |i|
    if i.even?
      one_stack << 1
    else
      zero_stack << 1
    end
  end

  if zero_stack.size > n
    return false
  end

  if one_stack.size > m
    return false
  end

  zero_stack[0] += n - zero_stack.size
  one_stack[-1] += m - one_stack.size

  res = ''
  i = 0

  while zero_stack.size > 0 || one_stack.size > 0
    if i.even?
      res << '1' * one_stack.shift
    else
      res << '0' * zero_stack.shift
    end

    i += 1 end

  res
end

res1 = f(N, M, K)
res2 = g(N, M, K)
ans = []
ans << res1 if res1
ans << res2 if res2

if ans.empty?
  puts -1
else
  puts ans.sort.first
end
0