結果

問題 No.459 C-VS for yukicoder
ユーザー cielciel
提出日時 2016-12-12 14:18:47
言語 Ruby
(3.3.0)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-06-07 22:32:42
合計ジャッジ時間 8,355 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
12,160 KB
testcase_01 AC 71 ms
12,160 KB
testcase_02 AC 71 ms
12,032 KB
testcase_03 AC 70 ms
12,032 KB
testcase_04 AC 71 ms
12,032 KB
testcase_05 AC 71 ms
12,160 KB
testcase_06 AC 71 ms
12,160 KB
testcase_07 AC 73 ms
12,288 KB
testcase_08 AC 71 ms
12,288 KB
testcase_09 AC 71 ms
12,160 KB
testcase_10 AC 70 ms
12,160 KB
testcase_11 AC 70 ms
12,288 KB
testcase_12 AC 70 ms
12,160 KB
testcase_13 AC 70 ms
12,160 KB
testcase_14 AC 70 ms
12,288 KB
testcase_15 AC 77 ms
12,416 KB
testcase_16 AC 76 ms
12,416 KB
testcase_17 AC 74 ms
12,160 KB
testcase_18 AC 74 ms
12,288 KB
testcase_19 AC 77 ms
12,288 KB
testcase_20 AC 73 ms
12,032 KB
testcase_21 AC 292 ms
15,468 KB
testcase_22 AC 295 ms
16,000 KB
testcase_23 AC 302 ms
15,488 KB
testcase_24 AC 148 ms
13,312 KB
testcase_25 AC 106 ms
14,464 KB
testcase_26 AC 115 ms
14,848 KB
testcase_27 AC 104 ms
14,336 KB
testcase_28 AC 101 ms
13,440 KB
testcase_29 AC 160 ms
15,232 KB
testcase_30 AC 115 ms
14,848 KB
testcase_31 AC 116 ms
13,952 KB
testcase_32 AC 80 ms
13,184 KB
testcase_33 AC 119 ms
14,336 KB
testcase_34 AC 129 ms
14,336 KB
testcase_35 AC 82 ms
13,952 KB
testcase_36 AC 132 ms
14,080 KB
testcase_37 AC 80 ms
13,568 KB
testcase_38 AC 123 ms
14,464 KB
testcase_39 AC 83 ms
13,824 KB
testcase_40 AC 122 ms
14,208 KB
testcase_41 AC 77 ms
13,056 KB
testcase_42 AC 110 ms
14,336 KB
testcase_43 AC 126 ms
14,336 KB
testcase_44 AC 94 ms
14,464 KB
testcase_45 AC 85 ms
14,336 KB
testcase_46 AC 84 ms
14,336 KB
testcase_47 AC 80 ms
13,312 KB
testcase_48 AC 127 ms
14,208 KB
testcase_49 AC 81 ms
13,568 KB
testcase_50 AC 117 ms
14,208 KB
testcase_51 AC 79 ms
13,184 KB
testcase_52 AC 103 ms
14,208 KB
testcase_53 AC 83 ms
13,952 KB
testcase_54 AC 122 ms
14,592 KB
testcase_55 AC 93 ms
13,952 KB
testcase_56 AC 112 ms
14,336 KB
testcase_57 AC 79 ms
13,312 KB
testcase_58 AC 129 ms
14,464 KB
testcase_59 AC 87 ms
14,208 KB
testcase_60 AC 103 ms
14,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - w
Syntax OK

ソースコード

diff #

h,w,n=gets.split.map(&:to_i)
s=h.times.map{gets.chomp.chars}.transpose.map{|e|h-(e.index('#')||h)}
c=n.times.map{gets.to_i}
c0=[]
idx=(0...n).sort_by{|e|c[e]}
idx.each{|e|
	k=(0..2).find{|k|s[c[e]+k]>0}
	s[c[e]+k]-=1
	a=[0,0,0];a[k]=1
	c0[e]=a
}
idx.each{|i|
	3.times{|j|
		dec=[3-c0[i][j],s[c[i]+j]].min
		s[c[i]+j]-=dec
		c0[i][j]+=dec
	}
}
c0.each{|e|puts e.map{|f|['.']*(3-f)+['#']*f}.transpose.map(&:join)}
0