#25911: 使用cin cout會超時,要加快讀取速度,需在main最開始時加上兩行指令


wubaie (小億)


int main()

{    

    ios_base::sync_with_stdio(false);

    cin.tie(0);   

 

}