結果

問題 No.2247 01 ZigZag
ユーザー simansiman
提出日時 2023-03-18 12:55:26
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 452 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-09-18 13:15:20
合計ジャッジ時間 7,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,288 KB
testcase_01 AC 79 ms
12,288 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 AC 119 ms
13,824 KB
testcase_04 AC 80 ms
12,160 KB
testcase_05 AC 111 ms
13,824 KB
testcase_06 AC 107 ms
13,056 KB
testcase_07 AC 79 ms
12,672 KB
testcase_08 AC 128 ms
14,336 KB
testcase_09 AC 119 ms
14,208 KB
testcase_10 AC 79 ms
12,928 KB
testcase_11 AC 106 ms
14,080 KB
testcase_12 AC 106 ms
13,952 KB
testcase_13 AC 99 ms
13,056 KB
testcase_14 AC 78 ms
12,160 KB
testcase_15 AC 113 ms
13,824 KB
testcase_16 AC 122 ms
14,592 KB
testcase_17 AC 132 ms
14,336 KB
testcase_18 AC 78 ms
12,416 KB
testcase_19 AC 79 ms
12,160 KB
testcase_20 AC 77 ms
12,288 KB
testcase_21 AC 87 ms
12,672 KB
testcase_22 AC 135 ms
15,744 KB
testcase_23 AC 96 ms
12,928 KB
testcase_24 AC 75 ms
12,288 KB
testcase_25 AC 149 ms
14,464 KB
testcase_26 AC 117 ms
14,080 KB
testcase_27 AC 125 ms
14,208 KB
testcase_28 AC 137 ms
15,744 KB
testcase_29 AC 121 ms
14,080 KB
testcase_30 AC 145 ms
15,744 KB
testcase_31 AC 79 ms
12,672 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 85 ms
12,416 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 79 ms
12,544 KB
testcase_44 AC 81 ms
12,800 KB
testcase_45 AC 156 ms
17,408 KB
testcase_46 AC 155 ms
15,744 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 76 ms
12,160 KB
testcase_50 AC 76 ms
12,160 KB
testcase_51 AC 76 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:9: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

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

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

max = 2 * [N, M].min

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