Submission
Status:
P-PPPPPP-P
Subtask/Task Score:
80/100
Score: 80
User: agnes_chan
Problemset: A.Circle Area
Language: python
Time: 0.010 second
Submitted On: 2026-05-07 12:40:22
n , m = map(int,input().split())
r , c = 0 , 0
for i,pt in enumerate([input() for i in range(n)]):
j = pt.count('#')
if j<r:
print(i,c)
print(f"{r*r*0.785:.2f}")
exit()
else: r = j
if not c: c = 1+pt.find('#')