这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《为什么题解里面好多直接循环的,我却会超时?》回复:
@[世界第一弱](/space/show?uid=24397) 休息了的啊
```cpp #include main() { long int n , m = 0; int x ; scanf("%d %d", &x , &n ); do { n--; if( x == 7 ) { x = 1 ; continue; } if( x != 1 ) m += 250 ; x++; }while(…
```cpp #include main() { long int n ; unsigned long long m ; int x ; scanf("%d %d", &x , &n ); m = n / 7 * 5 ; n = n % 7 ; while( n > 0 ) { if( x == 7 ) x = 1 ;…
```cpp #include main() { int a , n , m , i ; for( i = 1 , n = 0 , m = 0 ; i n ) { printf("-%d", i ); return 0 ; } m +=( n - a )/100 ; n =( n - a )%100 ; } m = 1…
在讨论《为什么是90??》回复:
楼上请看样例
在讨论《题目数据范围好像有错》回复:
数据改过了么,我1001一遍过了
在讨论《题目描述有误吧》回复:
7 3 8 8 1 0 2 7 4 4 4 5 2 6 5
在讨论《80分,求大神帮助》回复:
不要文件读写
会不会出现这种情况 1100000000 0000000000 0011111111 0110000001 0100000001 0111111111 有两个‘1’不在圈上
在讨论《打90分的进来》回复:
我是走到终点所在坐标才判断到达的 一遍过
在讨论《请问一下你们都是怎么输入的》回复:
楼上没有加‘&’...【scanf("%d",&a[k])】 (不要问我为什么这么久才指出来)
在讨论《请问一下你们都是怎么输入的》回复:
@ 淮厉 请问一下为什么要“&&a[k]”呀?
在讨论《建议补上n的范围》回复:
题目不是说n<=100么
在讨论《求第四点的测试数据....》回复:
找到问题了 输出的判断语句 y的限定条件错了
在讨论《求第四点的测试数据....》回复:
```cpp #include int main() { int n, i, x, y; int a[10000][4]; scanf("%d", &n); for(i=0; i =0; i--) { if(x>=a[i][0]&&x =a[i][1]&&y<=a[i][3]) { printf("%d\n", i+1…
在讨论《求第四点的测试数据....》回复:
```cpp #include int main() { int a[10000][4]; int i,n,x,y; scanf("%d",&n); for(i=0;i =0;i--) { if(x>=a[i][0]&&x =a[i][1]&&y<=a[i][1]+a[i][3]) {printf("%d\n",i+1…
```cpp #include int main() { int n, i, x, y, num=-1; scanf("%d", &n); int a[n][4]; for(i=0; i =a[i][0]&&x =a[i][1]&&y<=a[i][3]) num=i+1; } printf("%d\n", num);…
在讨论《小白求教:为什么这个题目属于数据结构》回复:
我这个是栈么
```cpp #include int main(){; char c; int l=0, r=0; do{ c=getchar(); if(c=='(') l++; else if(c==')') r++; }while(c != '@' && r <= l); if(r==l) printf("YES"); els…