Revision d07dd293-5b9b-41ce-aae4-ab66cf6bf8f3 - Code Golf Stack Exchange
# [Retina 0.8.2], <s>100</s> 69 bytes
```
2080$*.
M!`.{65}
33=`.
0
+s`.(?<=(0\.\.|\.0.|\..0).{65})
0
.(.+).
1ドル
```
[Try it online!][TIO-lwyntcxq] Explanation:
```
2080$*.
```
Insert `2080` `.`s.
M!`.{65}
Split it into `32` lines of `65` `.`.
33=`.
0
Change the middle `.` on the first line to a `0`.
+`
Repeat the following change until no more `.`s can be changed into `0`s.
s`.(?<=(0\.\.|\.0.|\..0).{65})
0
Change all `.`s to `0`s if there is either `0..`, `.00`, `.0.` or `..0` on the line above.
.(.+).
1ドル
Remove the left and right columns.
[Retina 0.8.2]: https://github.com/m-ender/retina/wiki/The-Language/a950ad7d925ec9316e3e2fb2cf5d49fd15d23e3d
[TIO-lwyntcxq]: https://tio.run/##K0otycxL/P@fy8jAwkBFS4/LVzFBr9rMtJbL2Ng2QY/LgEu7OEFPw97GVsMgRi9GryZGzwBE6BlogpVpAlXoaehpa@pxqRj@/w8A "Retina 0.8.2 – Try It Online"