摘要:
我的思路,就是用n*n-n得到的数res,再求取n的位数count,然后看res的count位是否都为0,就此AC; 阅读全文
posted @ 2017-03-01 18:45
贱人郭
阅读(254)
评论(0)
推荐(0)
摘要:
AC的代码: 阅读全文
posted @ 2017-03-01 17:56
贱人郭
阅读(269)
评论(0)
推荐(0)
摘要:
AC的代码: 阅读全文
posted @ 2017-03-01 17:13
贱人郭
阅读(114)
评论(0)
推荐(0)
摘要:
#include #define max 100000 using namespace std; int main() { int n; while(cin>>n) { int i,min_x=max,min_y=max; int x,y; for(i=0;i>x>>y; if (min_x>x) ... 阅读全文
posted @ 2017-03-01 08:52
贱人郭
阅读(131)
评论(0)
推荐(0)
摘要:
AC: 阅读全文
posted @ 2017-03-01 08:49
贱人郭
阅读(199)
评论(0)
推荐(0)