結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 RE -
testcase_03 AC 90 ms
12,288 KB
testcase_04 AC 92 ms
12,288 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 RE -
testcase_07 AC 88 ms
12,288 KB
testcase_08 RE -
testcase_09 AC 88 ms
12,032 KB
testcase_10 AC 89 ms
12,288 KB
testcase_11 WA -
testcase_12 AC 87 ms
12,160 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 96 ms
12,416 KB
testcase_16 RE -
testcase_17 AC 93 ms
12,288 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 130 ms
14,592 KB
testcase_26 AC 143 ms
14,976 KB
testcase_27 AC 127 ms
14,592 KB
testcase_28 AC 123 ms
13,312 KB
testcase_29 AC 191 ms
15,104 KB
testcase_30 AC 139 ms
15,104 KB
testcase_31 RE -
testcase_32 AC 100 ms
13,184 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 100 ms
13,952 KB
testcase_36 RE -
testcase_37 AC 102 ms
13,312 KB
testcase_38 RE -
testcase_39 AC 101 ms
13,824 KB
testcase_40 RE -
testcase_41 AC 97 ms
13,056 KB
testcase_42 RE -
testcase_43 AC 151 ms
14,592 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 AC 103 ms
14,464 KB
testcase_47 AC 102 ms
13,440 KB
testcase_48 AC 152 ms
14,336 KB
testcase_49 AC 100 ms
13,568 KB
testcase_50 RE -
testcase_51 AC 100 ms
13,184 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 AC 116 ms
14,464 KB
testcase_56 RE -
testcase_57 AC 98 ms
13,312 KB
testcase_58 RE -
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}
c.each{|e|s[e]-=1}
c0=c.map{[1,0,0]}
(0...n).sort_by{|e|c[e]}.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