摘要: T1 分解质因数 解题方法:暴力 //矩形相交问题 #include <bits/stdc++.h> using namespace std; bool sb(int n){ if(n == 2){ return 1; } if(!(n & 1)){ return 0; } for(int i = 阅读全文
posted @ 2020-02-28 19:07 LightAc 阅读(192) 评论(0) 推荐(0)
返回顶端