結果

問題 No.60 魔法少女
ユーザー gigurururugigurururu
提出日時 2014-11-09 23:36:16
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 232 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-12-31 08:59:24
合計ジャッジ時間 58,459 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
60,160 KB
testcase_01 AC 108 ms
36,516 KB
testcase_02 AC 109 ms
65,792 KB
testcase_03 AC 155 ms
63,744 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,919 ms
31,488 KB
testcase_12 TLE -
testcase_13 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def g;gets.split.map(&:to_i);end
n,k=g
e=(1..n).map{g}
m=(0..1500).map{[0]*1501}
k.times{
  x,y,w,h,d=g
  x+=500;y+=500
  (y..y+h).each{|i|(x..x+w).each{|j|m[i][j]+=d}}
}
p e.map{|x,y,h|[h-m[y+500][x+500],0].max}.inject(:+)
0