結果

問題 No.60 魔法少女
ユーザー letrangerjpletrangerjp
提出日時 2017-06-18 01:27:06
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,998 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 109,184 KB
最終ジャッジ日時 2024-10-01 12:05:06
合計ジャッジ時間 24,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,370 ms
90,624 KB
testcase_01 AC 1,358 ms
90,752 KB
testcase_02 AC 1,353 ms
90,624 KB
testcase_03 AC 1,332 ms
90,624 KB
testcase_04 AC 1,606 ms
91,520 KB
testcase_05 AC 1,674 ms
100,864 KB
testcase_06 AC 1,998 ms
109,184 KB
testcase_07 AC 1,697 ms
99,456 KB
testcase_08 AC 1,626 ms
97,152 KB
testcase_09 AC 1,471 ms
87,936 KB
testcase_10 AC 1,885 ms
105,344 KB
testcase_11 AC 1,379 ms
84,608 KB
testcase_12 AC 1,542 ms
98,304 KB
testcase_13 AC 1,885 ms
105,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

A=$<.map{|s|s.split.map &:to_i}
m=(1..2e3).map{[0]*2e3}
A.pop(A.shift[1]).map{|x,y,w,h,d|m[x][y]+=d
m[a=x+w+1][b=y+h+1]+=d
m[x][b]-=d
m[a][y]-=d}
(R=-500..1e3).map{|x|R.map{|y|m[x+1][y]+=m[x][y]}}
R.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
0