結果

問題 No.459 C-VS for yukicoder
ユーザー cielciel
提出日時 2016-12-12 14:17:06
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 413 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-05-07 03:22:16
合計ジャッジ時間 12,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,288 KB
testcase_01 AC 77 ms
12,160 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 81 ms
12,032 KB
testcase_04 AC 83 ms
12,160 KB
testcase_05 AC 79 ms
12,160 KB
testcase_06 AC 78 ms
12,288 KB
testcase_07 AC 80 ms
12,288 KB
testcase_08 AC 74 ms
12,288 KB
testcase_09 AC 74 ms
12,032 KB
testcase_10 AC 95 ms
12,288 KB
testcase_11 AC 76 ms
12,160 KB
testcase_12 AC 74 ms
12,160 KB
testcase_13 AC 79 ms
12,032 KB
testcase_14 AC 73 ms
12,288 KB
testcase_15 AC 82 ms
12,544 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 76 ms
12,032 KB
testcase_19 AC 80 ms
12,032 KB
testcase_20 AC 78 ms
12,160 KB
testcase_21 AC 310 ms
15,744 KB
testcase_22 AC 317 ms
16,128 KB
testcase_23 AC 317 ms
15,488 KB
testcase_24 AC 154 ms
13,440 KB
testcase_25 AC 110 ms
14,464 KB
testcase_26 AC 124 ms
14,976 KB
testcase_27 AC 116 ms
14,336 KB
testcase_28 AC 113 ms
13,312 KB
testcase_29 AC 169 ms
15,232 KB
testcase_30 AC 118 ms
14,976 KB
testcase_31 RE -
testcase_32 AC 83 ms
13,312 KB
testcase_33 AC 125 ms
14,464 KB
testcase_34 AC 137 ms
14,208 KB
testcase_35 RE -
testcase_36 AC 146 ms
13,952 KB
testcase_37 RE -
testcase_38 AC 131 ms
14,464 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 82 ms
13,312 KB
testcase_42 RE -
testcase_43 AC 129 ms
14,464 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 AC 165 ms
14,336 KB
testcase_49 AC 94 ms
13,696 KB
testcase_50 AC 132 ms
14,208 KB
testcase_51 AC 83 ms
13,440 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 AC 128 ms
14,464 KB
testcase_55 AC 99 ms
13,824 KB
testcase_56 RE -
testcase_57 AC 83 ms
13,312 KB
testcase_58 AC 138 ms
14,208 KB
testcase_59 RE -
testcase_60 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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=[j==0 ? 2 : 3,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