結果

問題 No.60 魔法少女
ユーザー KudeKude
提出日時 2020-09-07 09:28:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,957 ms / 5,000 ms
コード長 299 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 119,480 KB
最終ジャッジ日時 2024-05-06 23:27:54
合計ジャッジ時間 28,548 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,056 ms
42,752 KB
testcase_01 AC 1,101 ms
42,752 KB
testcase_02 AC 1,094 ms
42,880 KB
testcase_03 AC 1,093 ms
50,560 KB
testcase_04 AC 1,951 ms
83,456 KB
testcase_05 AC 2,323 ms
115,036 KB
testcase_06 AC 2,950 ms
115,964 KB
testcase_07 AC 2,434 ms
105,068 KB
testcase_08 AC 1,968 ms
98,856 KB
testcase_09 AC 1,436 ms
83,456 KB
testcase_10 AC 2,785 ms
116,808 KB
testcase_11 AC 1,336 ms
83,712 KB
testcase_12 AC 1,977 ms
103,704 KB
testcase_13 AC 2,957 ms
119,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:2: SyntaxWarning: invalid decimal literal
  s=[[0]*M*4for _ in[0]*M*4]

ソースコード

diff #

j=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 i in[-M]*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
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