結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 734 ms
41,728 KB
testcase_01 AC 746 ms
41,600 KB
testcase_02 AC 737 ms
41,984 KB
testcase_03 AC 746 ms
41,216 KB
testcase_04 AC 1,027 ms
48,512 KB
testcase_05 AC 1,087 ms
55,552 KB
testcase_06 AC 1,260 ms
55,424 KB
testcase_07 AC 1,124 ms
52,864 KB
testcase_08 AC 965 ms
53,248 KB
testcase_09 AC 829 ms
49,920 KB
testcase_10 AC 1,246 ms
55,552 KB
testcase_11 AC 775 ms
49,792 KB
testcase_12 AC 987 ms
52,864 KB
testcase_13 AC 1,308 ms
55,424 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