結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,016 ms
45,184 KB
testcase_01 AC 1,031 ms
45,184 KB
testcase_02 AC 1,069 ms
45,312 KB
testcase_03 AC 1,107 ms
53,120 KB
testcase_04 AC 1,820 ms
87,064 KB
testcase_05 AC 2,055 ms
118,372 KB
testcase_06 AC 2,603 ms
119,436 KB
testcase_07 AC 2,140 ms
108,284 KB
testcase_08 AC 1,788 ms
102,452 KB
testcase_09 AC 1,349 ms
87,040 KB
testcase_10 AC 2,634 ms
120,020 KB
testcase_11 AC 1,234 ms
87,296 KB
testcase_12 AC 1,779 ms
107,288 KB
testcase_13 AC 2,682 ms
122,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:2: SyntaxWarning: invalid decimal literal
  s=[[0]*M*4for _ in[0]*M*4]

ソースコード

diff #

M=524
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 j in[0,5,9,M]:s[x+j%-3*~w][y+j%-5*~h]+=d*(-1)**j
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