are_you_sure @ 2024-07-23 16:19:29
你们是不是还想着换思路?nonono,不用,加个
ios::sync_with_stdio(0);cin.tie(0);
就过了(加快读写取速度)
by ale_exe @ 2024-07-24 07:30:15
啊?
by are_you_sure @ 2024-07-24 10:03:02
你试试 @ale_exe
by tongyurui @ 2024-07-25 11:28:00
@are_you_sure scanf和printf一个效果
by itisrainytoday @ 2024-07-28 21:23:24
别信他鬼话,我认为他觉得scanf,printf是摆设。
by itisrainytoday @ 2024-07-28 21:32:50
这题实际上不配普及-,能混个入门就不错了。
by LIUjr120419 @ 2024-07-31 11:53:33
@are_you_sure 在哪加
by are_you_sure @ 2024-07-31 14:33:58
@LIUjr120419 main函数开头
#include<iostream>
using namespace std;
int main(){
ios::sync_with_stdio(0);cin.tie(0);
//your code
}
by LIUjr120419 @ 2024-07-31 20:05:33
@are_you_sure 谢谢大佬
by ACTLVE @ 2024-08-02 10:51:29
这个行不行: ios::sync_with_stdio(false);
by are_you_sure @ 2024-08-09 18:56:52
@ACTLVE yes