python3 本地运行没问题 第二到第五个RE

P5736 【深基7.例2】质数筛

@[WNLJOKER](/user/179501) CPP溜了
by _Herobrine_ @ 2020-08-19 10:22:19


```python num_list = list(map(int, line.split(' '))) # input numbers ``` 改成 ```python num_list = list(map(int, line.split())) # input numbers ``` 就过了,输入文件里有奇奇怪怪的\n,\r,要全过滤掉
by peterwuyihong @ 2020-08-19 10:26:40


@[WNLJOKER](/user/179501)
by peterwuyihong @ 2020-08-19 10:35:56


@[吴亦泓](/user/100325) 谢谢!
by WNLJOKER @ 2020-08-19 10:48:35


=w=
by peterwuyihong @ 2020-08-19 11:03:51


|