結果

問題 No.60 魔法少女
ユーザー KudeKude
提出日時 2020-09-07 08:21:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 3,421 ms / 5,000 ms
コード長 311 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 175,832 KB
最終ジャッジ日時 2024-11-29 10:13:46
合計ジャッジ時間 32,987 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,081 ms
73,856 KB
testcase_01 AC 1,121 ms
73,856 KB
testcase_02 AC 1,120 ms
73,856 KB
testcase_03 AC 1,177 ms
81,536 KB
testcase_04 AC 2,379 ms
140,984 KB
testcase_05 AC 2,680 ms
170,360 KB
testcase_06 AC 3,421 ms
172,984 KB
testcase_07 AC 3,132 ms
162,060 KB
testcase_08 AC 2,335 ms
154,696 KB
testcase_09 AC 1,958 ms
135,808 KB
testcase_10 AC 3,243 ms
173,288 KB
testcase_11 AC 1,350 ms
114,884 KB
testcase_12 AC 2,304 ms
156,996 KB
testcase_13 AC 3,377 ms
175,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:1: SyntaxWarning: invalid decimal literal
  s=[[0]*2000for _ in[0]*2000]

ソースコード

diff #

s=[[0]*2000for _ in[0]*2000]
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
for _ in'!!':
 for t in(s:=[[*t]for t in zip(*s)]):
  for j in range(-500,500):t[j+1]+=t[j]
print(sum(max(h-s[x][y],0)for x,y,h in E))
0