結果
問題 | No.60 魔法少女 |
ユーザー | 👑 rin204 |
提出日時 | 2022-07-05 21:09:43 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 377 ms / 5,000 ms |
コード長 | 625 bytes |
コンパイル時間 | 374 ms |
コンパイル使用メモリ | 82,816 KB |
実行使用メモリ | 119,040 KB |
最終ジャッジ日時 | 2024-12-16 07:20:41 |
合計ジャッジ時間 | 5,544 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
92,416 KB |
testcase_01 | AC | 119 ms
92,416 KB |
testcase_02 | AC | 120 ms
92,288 KB |
testcase_03 | AC | 120 ms
92,160 KB |
testcase_04 | AC | 270 ms
109,952 KB |
testcase_05 | AC | 320 ms
118,272 KB |
testcase_06 | AC | 362 ms
118,144 KB |
testcase_07 | AC | 316 ms
115,328 KB |
testcase_08 | AC | 274 ms
114,048 KB |
testcase_09 | AC | 220 ms
110,720 KB |
testcase_10 | AC | 355 ms
118,400 KB |
testcase_11 | AC | 179 ms
102,784 KB |
testcase_12 | AC | 273 ms
115,328 KB |
testcase_13 | AC | 377 ms
119,040 KB |
ソースコード
n, k = map(int, input().split()) enemy = [list(map(int, input().split())) for _ in range(n)] dp = [[0] * 2000 for _ in range(2000)] plus = 600 for _ in range(k): x1, y1, w, h, d = map(int, input().split()) x1 += plus y1 += plus x2 = x1 + w + 1 y2 = y1 + h + 1 dp[x1][y1] += d dp[x1][y2] -= d dp[x2][y1] -= d dp[x2][y2] += d for i in range(1700): for j in range(1700): dp[i][j + 1] += dp[i][j] for i in range(1700): for j in range(1700): dp[i + 1][j] += dp[i][j] ans = 0 for x, y, hp in enemy: x += plus y += plus ans += max(0, hp - dp[x][y]) print(ans)