📌  相关文章
📜  c++ fast - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:55.680000             🧑  作者: Mango

代码示例1
#include 
using namespace std;
#define fast ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
int main()
{
    fast;
    return 0;
}