Loading

摘要: #include #include #include #define ll long long using namespace std; ll pow_mod(ll a,ll b,ll mod){ ll ans = 1; a %= mod; while(b){ if(b&1){ ans = ans * a % mod; ... 阅读全文
posted @ 2019-04-03 21:07 菜の可怜 阅读(123) 评论(0) 推荐(0) 编辑