換行用 cout << endl; 會超時,要用 cout << "\n";
C++的各位
並且加上I/O優化
詳細自己GOOGLE
ios_base::sync_with_stdio(false);
cin.tie(0);
根本不能用cin cout 會超時