結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 685 ms
47,744 KB
testcase_01 AC 674 ms
47,744 KB
testcase_02 AC 670 ms
47,744 KB
testcase_03 AC 679 ms
47,744 KB
testcase_04 AC 928 ms
48,640 KB
testcase_05 AC 969 ms
55,680 KB
testcase_06 AC 1,130 ms
55,680 KB
testcase_07 AC 1,004 ms
52,736 KB
testcase_08 AC 875 ms
53,248 KB
testcase_09 AC 749 ms
49,664 KB
testcase_10 AC 1,089 ms
55,680 KB
testcase_11 AC 690 ms
50,176 KB
testcase_12 AC 857 ms
52,864 KB
testcase_13 AC 1,184 ms
55,552 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=m.map{|i|
  s=0
  a=a.zip(i.map{|j|s+=j}).map{|j,k|j+k}
}

p e.map{|x,y,h|[h-m[y+500][x+500],0].max}.inject(:+)
0