进食后人(如果你T了1~2个点)
查看原帖
进食后人(如果你T了1~2个点)
1494377
YHW12345楼主2025/7/22 11:17

首先,你需要关闭输入输出同步流:

	ios::sync_with_stdio(false);
	cin.tie(nullptr), cout.tie(nullptr);

但是如果还T的话,把false和nullptr全改成0:

	ios::sync_with_stdio(0);
	cin.tie(0), cout.tie(0);

还T那就是你写挂了

2025/7/22 11:17
加载中...