全部TLE,如何优化,请大佬帮忙看看

P2005 A/B Problem II

用py(逃)
by Solgareo @ 2021-04-13 22:44:45


建议带个左右移,还有不太建议string(个人观点)
by Solgareo @ 2021-04-13 22:46:36


~~~py import math a=int(input()) b=int(input()) print(math.floor(a/b)) ~~~
by hello_world_djh @ 2022-01-28 20:28:46


```python a = int(input()) b = int(input()) print(a//b) ```
by 蟋蟀喵~~ @ 2022-10-16 09:28:08


|