Well I recode it and there is no newline problem I guess,
Still I'm getting WA
#include <iostream>
#include <cstdio>
using namespace std ;
int main()
{
// freopen("in.txt", "r", stdin ) ;
int noTest ;
int a, f ;
int i, j, k ;
cin >> noTest ;
while( noTest-- )
{
cin >> a >> f ;
for( i ...
Search found 12 matches
- Sun Nov 28, 2010 10:36 am
- Forum: Volume 4 (400-499)
- Topic: 488 - Triangle Wave
- Replies: 270
- Views: 64813
- Sat Nov 27, 2010 9:23 pm
- Forum: Volume 114 (11400-11499)
- Topic: 11455 - Behold my quadrangle
- Replies: 21
- Views: 25366
Re: 11455 - Behold My Quadrangle
Any idea why I've got WA on this
#include <iostream>
#include <cstdio>
using namespace std ;
int main()
{
// freopen("in.txt", "r", stdin ) ;
int a,b,c,d ;
int noTest ;
int max ;
cin >> noTest ;
while( noTest-- )
{
cin >> a >> b >> c >> d ;
max = a ;
if( max < b ) max = b ;
if( max ...
#include <iostream>
#include <cstdio>
using namespace std ;
int main()
{
// freopen("in.txt", "r", stdin ) ;
int a,b,c,d ;
int noTest ;
int max ;
cin >> noTest ;
while( noTest-- )
{
cin >> a >> b >> c >> d ;
max = a ;
if( max < b ) max = b ;
if( max ...
- Sat Nov 27, 2010 8:26 pm
- Forum: Volume 3 (300-399)
- Topic: 371 - Ackermann Functions
- Replies: 196
- Views: 51282
Re: 371"Ackermann Functions "
Can anyone find me out the problem, please? I'm getting WA
#include <stdio.h>
int main()
{
long long int a, b ;
long long int i ;
long long int maxSeq, maxSeqNum ;
long long int count, t ;
while( scanf("%lld%lld", &a, &b ) )
{
if( a+b == 0 ) break ;
maxSeq = 0 ;
for( i = a ; i <= b ; i ...
#include <stdio.h>
int main()
{
long long int a, b ;
long long int i ;
long long int maxSeq, maxSeqNum ;
long long int count, t ;
while( scanf("%lld%lld", &a, &b ) )
{
if( a+b == 0 ) break ;
maxSeq = 0 ;
for( i = a ; i <= b ; i ...
- Sat Nov 27, 2010 6:58 pm
- Forum: Volume 4 (400-499)
- Topic: 490 - Rotating Sentences
- Replies: 212
- Views: 48411
Re: 490 - Rotating Sentences
Can anyone help me with this code? I get WA with it, still ignore of why...
#include <iostream>
#include <cstdio>
#include <string>
#include <vector>
using namespace std ;
int main()
{
// freopen("in.txt", "r", stdin) ;
vector<string>in ;
string t ;
int i, j, max ;
while( getline(cin, t ...
#include <iostream>
#include <cstdio>
#include <string>
#include <vector>
using namespace std ;
int main()
{
// freopen("in.txt", "r", stdin) ;
vector<string>in ;
string t ;
int i, j, max ;
while( getline(cin, t ...
- Sat Nov 27, 2010 6:03 pm
- Forum: Volume 4 (400-499)
- Topic: 488 - Triangle Wave
- Replies: 270
- Views: 64813
Re: 488 - Triangle Wave
Could anyone help me with this code please? I can't shoot the problem.
#include <iostream>
#include <cstdio>
using namespace std ;
int main()
{
// freopen("in.txt", "r", stdin ) ;
int noTest ;
int a, f ;
int i, j, k ;
cin >> noTest ;
while( noTest-- )
{
cin >> a >> f ;
for( i = 0 ; i ...
#include <iostream>
#include <cstdio>
using namespace std ;
int main()
{
// freopen("in.txt", "r", stdin ) ;
int noTest ;
int a, f ;
int i, j, k ;
cin >> noTest ;
while( noTest-- )
{
cin >> a >> f ;
for( i = 0 ; i ...
- Sun Oct 17, 2010 5:06 pm
- Forum: Volume 4 (400-499)
- Topic: 488 - Triangle Wave
- Replies: 270
- Views: 64813
Re: WA 488
I cannot find what my problem is :(
Can anyone help pleasure ...
#include <stdio.h>
int main()
{
int noTest ;
int a, f ;
int i, j, k;
scanf("%d", &noTest ) ;
while( noTest-- )
{
scanf("%d%d", &a, &f) ;
for( i = 0 ; i < f ; i++ )
{
for( j = 0 ; j < a ; j++ )
{
for( k = 0 ; k <= j ; k ...
Can anyone help pleasure ...
#include <stdio.h>
int main()
{
int noTest ;
int a, f ;
int i, j, k;
scanf("%d", &noTest ) ;
while( noTest-- )
{
scanf("%d%d", &a, &f) ;
for( i = 0 ; i < f ; i++ )
{
for( j = 0 ; j < a ; j++ )
{
for( k = 0 ; k <= j ; k ...
- Thu Sep 02, 2010 12:57 pm
- Forum: Volume 5 (500-599)
- Topic: 575 - Skew Binary
- Replies: 18
- Views: 6314
Re: Skew Binary: got WA
Ooops, I actually didn't find any thread about Skew binary while googling.
And I found my fault. It's pretty silly, I didn't read the question carefully.
Power inits from 2^1 -1 not 2^0 -1 Got AC after that...
And I found my fault. It's pretty silly, I didn't read the question carefully.
Power inits from 2^1 -1 not 2^0 -1 Got AC after that...

- Sat Aug 28, 2010 8:30 am
- Forum: Volume 5 (500-599)
- Topic: 575 - Skew Binary
- Replies: 18
- Views: 6314
Skew Binary: got WA
Can anyone please tell me why I get WA in this code... Thanks in advance
#include <stdio.h>
#include <string.h>
#define uint32 unsigned int
int main()
{
// freoen("in.txt", "rb", stdin );
char input[100] ;
uint32 len ;
int i ;
uint32 dec ;
uint32 factor ;
while( gets(input) != NULL ...
#include <stdio.h>
#include <string.h>
#define uint32 unsigned int
int main()
{
// freoen("in.txt", "rb", stdin );
char input[100] ;
uint32 len ;
int i ;
uint32 dec ;
uint32 factor ;
while( gets(input) != NULL ...
- Sat Aug 28, 2010 8:23 am
- Forum: Volume 5 (500-599)
- Topic: 541 - Error Correction
- Replies: 27
- Views: 16859
Re: 541-error correction --help is wanted
Can you help me with this code ? :-?
I get WA
#include <stdio.h>
int main()
{
//freopen("in.txt", "rb", stdin );
int input ;
int i, j ;
bool map[100][100] ;
bool vuaRow[100] ;
bool vuaCol[100] ;
int count ;
while( scanf("%d", &input) )
{
if( input == 0 )
break ;
for( i = 0 ; i ...
I get WA
#include <stdio.h>
int main()
{
//freopen("in.txt", "rb", stdin );
int input ;
int i, j ;
bool map[100][100] ;
bool vuaRow[100] ;
bool vuaCol[100] ;
int count ;
while( scanf("%d", &input) )
{
if( input == 0 )
break ;
for( i = 0 ; i ...
- Fri Aug 27, 2010 1:17 pm
- Forum: Volume 100 (10000-10099)
- Topic: 10038 - Jolly Jumpers
- Replies: 445
- Views: 153195
Re: 10038 - Jolly Jumpers
That made me silly"Not Jolly" should be "Not jolly"

Thanks Helloneo
- Sat Aug 14, 2010 6:46 am
- Forum: Volume 100 (10000-10099)
- Topic: 10038 - Jolly Jumpers
- Replies: 445
- Views: 153195
Re: 10038 - Jolly Jumpers
Could anyone please tell me why this is not working??????

Code: Select all
Removed after AC
- Fri Aug 13, 2010 11:56 am
- Forum: Volume 2 (200-299)
- Topic: 272 - TEX Quotes
- Replies: 136
- Views: 56775