結果
問題 | No.60 魔法少女 |
ユーザー | letrangerjp |
提出日時 | 2017-06-18 01:25:10 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 221 bytes |
コンパイル時間 | 188 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 216,096 KB |
最終ジャッジ日時 | 2024-10-01 12:04:32 |
合計ジャッジ時間 | 10,389 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 657 ms
66,816 KB |
testcase_01 | AC | 658 ms
66,816 KB |
testcase_02 | AC | 656 ms
66,816 KB |
testcase_03 | AC | 658 ms
66,944 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
A=$<.map{|s|s.split.map &:to_i} m=(1..M=2e3).map{[0]*M} A.pop(A.shift[1]).map{|x,y,w,h,d|(x..x+w).map{|i|m[i][y]+=d;m[i][y+h+1]-=d}} (R=-500..1e3).map{|x|R.map{|y|m[x][y+1]+=m[x][y]}} p A.map{|x,y,h|[0,h-m[x][y]].max}.sum