結果

問題 No.60 魔法少女
ユーザー dangodango
提出日時 2023-07-09 20:52:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 491 ms / 5,000 ms
コード長 424 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 124,096 KB
最終ジャッジ日時 2024-07-23 18:24:31
合計ジャッジ時間 5,844 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
110,200 KB
testcase_01 AC 121 ms
110,512 KB
testcase_02 AC 121 ms
110,668 KB
testcase_03 AC 123 ms
110,432 KB
testcase_04 AC 289 ms
113,976 KB
testcase_05 AC 317 ms
122,696 KB
testcase_06 AC 491 ms
123,484 KB
testcase_07 AC 331 ms
120,324 KB
testcase_08 AC 279 ms
118,408 KB
testcase_09 AC 224 ms
114,572 KB
testcase_10 AC 379 ms
123,140 KB
testcase_11 AC 191 ms
114,344 KB
testcase_12 AC 283 ms
119,936 KB
testcase_13 AC 412 ms
124,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = [[0] * 2096 for _ in [0] * 2096]
n, k = map(int, input().split())
E = [list(map(int, input().split())) for _ in [0] * n]
for i in[-524] * k:
  x, y, w, h, d = map(int, input().split())
  for j in[0, 5, 9, 524]:
    s[x + j % -3 * ~w][y + j % -5 * ~h] += d * (-1)**j
while i < 524:
  s[i][j] += s[i-1][j] + s[i][j-1] - s[i-1][j-1]
  i += j > 524
  j += 1 - (j > 524) * 1048
print(sum(max(h - s[x][y], 0)for x, y, h in E))
0