LeetCode 加快输入输出

static auto __=[](){
    std::ios::sync_with_stdio(false);
    cin.tie(nullptr);
    return nullptr;
}();
//注意放在solution上面
原文地址:https://www.cnblogs.com/Jawen/p/10940043.html