結果

問題 No.60 魔法少女
ユーザー KudeKude
提出日時 2020-09-07 09:03:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 3,013 ms / 5,000 ms
コード長 303 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 119,368 KB
最終ジャッジ日時 2024-11-29 10:16:32
合計ジャッジ時間 29,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,067 ms
42,880 KB
testcase_01 AC 1,106 ms
42,880 KB
testcase_02 AC 1,120 ms
42,880 KB
testcase_03 AC 1,105 ms
50,432 KB
testcase_04 AC 1,954 ms
83,740 KB
testcase_05 AC 2,364 ms
114,796 KB
testcase_06 AC 2,926 ms
116,112 KB
testcase_07 AC 2,446 ms
104,960 KB
testcase_08 AC 1,961 ms
98,744 KB
testcase_09 AC 1,481 ms
83,584 KB
testcase_10 AC 2,841 ms
116,568 KB
testcase_11 AC 1,342 ms
83,712 KB
testcase_12 AC 1,971 ms
103,720 KB
testcase_13 AC 3,013 ms
119,368 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:2: SyntaxWarning: invalid decimal literal
  s=[[0]*M*4for _ in[0]*M*4]

ソースコード

diff #

M=505
s=[[0]*M*4for _ in[0]*M*4]
f=lambda:map(int,input().split())
n,k=f()
E=[f()for _ in[0]*n]
for _ in[0]*k:
 x,y,w,h,d=f()
 for k in[0,5,9,14]:s[x+k%-3*~w][y+k%-5*~h]+=d*(-1)**k
i=j=-M
while i<M:s[i][j]+=s[i-1][j]+s[i][j-1]-s[i-1][j-1];i+=j>M;j+=1-(j>M)*2*M
print(sum(max(h-s[x][y],0)for x,y,h in E))
0