結果

問題 No.2247 01 ZigZag
ユーザー simansiman
提出日時 2023-03-18 16:01:57
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-09-18 13:23:27
合計ジャッジ時間 6,776 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,416 KB
testcase_01 AC 73 ms
12,288 KB
testcase_02 AC 73 ms
12,160 KB
testcase_03 AC 108 ms
14,080 KB
testcase_04 AC 78 ms
12,416 KB
testcase_05 AC 106 ms
13,824 KB
testcase_06 AC 98 ms
13,056 KB
testcase_07 AC 80 ms
12,288 KB
testcase_08 AC 125 ms
14,464 KB
testcase_09 AC 119 ms
14,080 KB
testcase_10 AC 74 ms
12,800 KB
testcase_11 AC 104 ms
13,952 KB
testcase_12 AC 106 ms
13,824 KB
testcase_13 AC 93 ms
13,056 KB
testcase_14 AC 73 ms
12,032 KB
testcase_15 AC 107 ms
13,952 KB
testcase_16 AC 122 ms
14,592 KB
testcase_17 AC 130 ms
14,592 KB
testcase_18 AC 74 ms
12,416 KB
testcase_19 AC 73 ms
12,160 KB
testcase_20 AC 73 ms
12,288 KB
testcase_21 AC 84 ms
12,672 KB
testcase_22 AC 140 ms
15,744 KB
testcase_23 AC 98 ms
13,184 KB
testcase_24 AC 75 ms
12,160 KB
testcase_25 AC 126 ms
14,592 KB
testcase_26 AC 115 ms
14,208 KB
testcase_27 AC 113 ms
14,080 KB
testcase_28 AC 131 ms
15,616 KB
testcase_29 AC 115 ms
14,336 KB
testcase_30 AC 138 ms
15,744 KB
testcase_31 AC 77 ms
12,928 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 86 ms
12,416 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 80 ms
12,672 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 86 ms
12,288 KB
testcase_44 AC 77 ms
12,160 KB
testcase_45 AC 158 ms
17,664 KB
testcase_46 AC 161 ms
15,872 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 77 ms
12,160 KB
testcase_50 AC 75 ms
12,288 KB
testcase_51 AC 74 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:15: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

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

if (N == 0 || M == 0) && K != 0
  puts -1
  exit
end

zero_stack = [0] * N
one_stack = [1] * M

max = 2 * [N, M].min
max -= 1 if N == M

if K == 0 || max < K
  puts -1
  exit
end

k = K

if k.even?
  one_stack.push(zero_stack.pop)
  k -= 1
end

ans = []
d = (k + 1) / 2

while zero_stack.size > d
  ans << zero_stack.shift
end

while zero_stack.size > 0 || one_stack.size > 0
  ans << zero_stack.shift if zero_stack.size > 0
  ans << one_stack.shift if one_stack.size > 0
end

puts ans.join
0