首页 > 其他 > 详细

自己风格的文件内容

时间:2020-07-11 20:51:18      阅读:29      评论:0      收藏:0      [点我收藏+]
#pragma GCC optimize(2)
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 1e5 + 100;
const int maxm = 1e6 + 100;
const int inf = 0x3f3f3f3f; //1061109567

inline ll read()
{
    ll x = 0, f = 1;
    char ch = getchar();
    while (ch<0 || ch > 9) {
        if (ch == -) f = -1;
        ch = getchar();
    }
    while ( ch >= 0 && ch <= 9) {
        x = x * 10 + ch - 0;
        ch = getchar();
    }
    return x * f;
}

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(0);

    return 0;
}

 

自己风格的文件内容

原文:https://www.cnblogs.com/Vikyanite/p/13285292.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!