码迷,mamicode.com
首页 > 其他好文 > 详细

卡常小tips

时间:2018-10-29 19:58:02      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:getch   etc   get   pre   turn   class   sdi   tip   tchar   

应AZe要求写一个小tipsqwq

快读:

inline int qr(){
    int x=0, f=1;
    char ch=getchar();
    for(;!isdigit(ch); ch=getchar()) if(ch=='-') f=-1;
    for(; isdigit(ch); ch=getchar()) x=(x<<3)+(x<<1)+ch-48;
    return x*f;
}

ksm:

int ksm(int n, int k, int p){//n^k%p
    int res=1;
    while(k){
        if(k&1) res=res*n%p;
        n=n*n%p;
        n>>=1;
    }
    return res;
}

++ii++快一丢丢

卡常小tips

标签:getch   etc   get   pre   turn   class   sdi   tip   tchar   

原文地址:https://www.cnblogs.com/pushinl/p/9872444.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!