結果
問題 | No.60 魔法少女 |
ユーザー | ntuda |
提出日時 | 2025-01-01 19:07:04 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 276 ms / 5,000 ms |
コード長 | 738 bytes |
コンパイル時間 | 344 ms |
コンパイル使用メモリ | 82,104 KB |
実行使用メモリ | 108,912 KB |
最終ジャッジ日時 | 2025-01-01 19:07:09 |
合計ジャッジ時間 | 4,206 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
69,436 KB |
testcase_01 | AC | 55 ms
69,736 KB |
testcase_02 | AC | 53 ms
68,308 KB |
testcase_03 | AC | 54 ms
68,384 KB |
testcase_04 | AC | 190 ms
88,928 KB |
testcase_05 | AC | 212 ms
96,576 KB |
testcase_06 | AC | 267 ms
100,112 KB |
testcase_07 | AC | 230 ms
98,748 KB |
testcase_08 | AC | 219 ms
92,880 KB |
testcase_09 | AC | 142 ms
90,208 KB |
testcase_10 | AC | 265 ms
106,800 KB |
testcase_11 | AC | 98 ms
79,336 KB |
testcase_12 | AC | 182 ms
95,476 KB |
testcase_13 | AC | 276 ms
108,912 KB |
ソースコード
N, K = map(int, input().split()) XY = [list(map(int, input().split())) for _ in range(N)] AXY = [list(map(int, input().split())) for _ in range(K)] r = 500 + 1 r2 = r * 2 + 2 M = [[0] * r2 for _ in range(r2)] for x, y, w, h, d in AXY: x += r y += r M[x - 1][y - 1] += d if x + w < r2: M[x + w][y - 1] -= d if y + h < r2: M[x + w][y + h] += d if y + h + 1 < r2: M[x - 1][y + h] -= d for i in range(r2): for j in range(r2): if i > 0: M[i][j] += M[i - 1][j] if j > 0: M[i][j] -= M[i - 1][j - 1] if j > 0: M[i][j] += M[i][j - 1] ans = 0 for x, y, h in XY: ans += max(0, h - M[x + r - 1][y + r -1]) print(ans)