結果

問題 No.60 魔法少女
ユーザー letrangerjpletrangerjp
提出日時 2017-06-18 01:48:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,332 ms / 5,000 ms
コード長 250 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 156,032 KB
最終ジャッジ日時 2024-10-01 12:06:32
合計ジャッジ時間 16,729 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 824 ms
137,344 KB
testcase_01 AC 830 ms
137,216 KB
testcase_02 AC 835 ms
137,344 KB
testcase_03 AC 842 ms
137,216 KB
testcase_04 AC 1,075 ms
145,792 KB
testcase_05 AC 1,110 ms
148,992 KB
testcase_06 AC 1,313 ms
155,776 KB
testcase_07 AC 1,175 ms
150,016 KB
testcase_08 AC 1,049 ms
146,560 KB
testcase_09 AC 919 ms
140,160 KB
testcase_10 AC 1,266 ms
154,112 KB
testcase_11 AC 978 ms
138,880 KB
testcase_12 AC 1,015 ms
144,768 KB
testcase_13 AC 1,332 ms
156,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:7: warning: `&' interpreted as argument prefix
Syntax OK

ソースコード

diff #

A=$<.map{|s|s.split.map &:to_i}
m=(1..M=4*L=500).map{[0]*M}
A.pop(A.shift[1]).map{|x,y,w,h,d|m[x+=L][y+=L]+=d
m[a=x+w+1][b=y+h+1]+=d
m[x][b]-=d
m[a][y]-=d}
m=m.map(&f=->x{s=0;x.map{|y|s+=y}}).transpose.map &f
p A.map{|x,y,h|[0,h-m[y+L][x+L]].max}.sum
0