結果
問題 | No.60 魔法少女 |
ユーザー | gigurururu |
提出日時 | 2014-11-09 23:36:16 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 232 bytes |
コンパイル時間 | 95 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 37,916 KB |
最終ジャッジ日時 | 2024-06-10 02:03:44 |
合計ジャッジ時間 | 7,626 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 91 ms
29,440 KB |
testcase_01 | AC | 91 ms
29,696 KB |
testcase_02 | AC | 97 ms
29,696 KB |
testcase_03 | AC | 145 ms
29,568 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
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(:+)