結果

問題 No.60 魔法少女
ユーザー vwxyzvwxyz
提出日時 2022-06-29 15:26:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,907 ms / 5,000 ms
コード長 663 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 122,272 KB
最終ジャッジ日時 2024-05-02 06:43:49
合計ジャッジ時間 35,770 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,874 ms
42,112 KB
testcase_01 AC 1,834 ms
42,240 KB
testcase_02 AC 1,943 ms
42,112 KB
testcase_03 AC 1,922 ms
54,016 KB
testcase_04 AC 2,536 ms
113,792 KB
testcase_05 AC 2,462 ms
121,116 KB
testcase_06 AC 2,907 ms
121,264 KB
testcase_07 AC 2,658 ms
118,812 KB
testcase_08 AC 2,410 ms
117,280 KB
testcase_09 AC 2,219 ms
112,640 KB
testcase_10 AC 2,765 ms
121,628 KB
testcase_11 AC 2,029 ms
101,888 KB
testcase_12 AC 2,423 ms
117,280 KB
testcase_13 AC 2,827 ms
122,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,K=map(int,readline().split())
X,Y,HP=[],[],[]
for _ in range(N):
    x,y,hp=map(int,readline().split())
    x+=500;y+=500
    X.append(x)
    Y.append(y)
    HP.append(hp)
imos=[[0]*2001 for i in range(2001)]
for _ in range(K):
    x,y,w,h,d=map(int,readline().split())
    x+=500;y+=500
    w+=1;h+=1
    imos[x+w][y+h]+=d
    imos[x][y+h]-=d
    imos[x+w][y]-=d
    imos[x][y]+=d
for i in range(2001):
    for j in range(1,2001):
        imos[i][j]+=imos[i][j-1]
for i in range(1,2001):
    for j in range(2001):
        imos[i][j]+=imos[i-1][j]
ans=0
for x,y,hp in zip(X,Y,HP):
    ans+=max(0,hp-imos[x][y])
print(ans)
0