結果

問題 No.60 魔法少女
ユーザー gigurururugigurururu
提出日時 2014-11-09 23:59:43
言語 Ruby
(3.4.1)
結果
AC  
実行時間 1,427 ms / 5,000 ms
コード長 382 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 55,680 KB
最終ジャッジ日時 2024-12-31 09:06:03
合計ジャッジ時間 16,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 766 ms
41,216 KB
testcase_01 AC 765 ms
41,856 KB
testcase_02 AC 767 ms
41,984 KB
testcase_03 AC 770 ms
41,600 KB
testcase_04 AC 1,076 ms
48,640 KB
testcase_05 AC 1,184 ms
55,680 KB
testcase_06 AC 1,374 ms
55,424 KB
testcase_07 AC 1,224 ms
52,736 KB
testcase_08 AC 1,080 ms
53,248 KB
testcase_09 AC 885 ms
49,664 KB
testcase_10 AC 1,344 ms
55,552 KB
testcase_11 AC 832 ms
49,792 KB
testcase_12 AC 1,070 ms
52,864 KB
testcase_13 AC 1,427 ms
55,680 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def g;gets.split.map(&:to_i);end
n,k=g
e=(1..n).map{g}
m=(1..1502).map{[0]*1502}
k.times{
  x,y,w,h,d=g
  x+=500;y+=500
  m[y][x]+=d
  m[y][x+w+1]-=d
  m[y+h+1][x]-=d
  m[y+h+1][x+w+1]+=d
}
a=[0]*1502
m.map!{|i|
  s=0
  a=a.zip(i.map{|j|s+=j}).map{|j,l|j+l}
}

p e.map{|x,y,h|[h-m[y+500][x+500],0].max}.inject(:+)
#require'pp'
#pp m[490..510].map{|i|i[490..510]}
0