Search found 6 matches
- Fri Sep 07, 2012 7:19 pm
- Forum: Volume 6 (600-699)
- Topic: 673 - Parentheses Balance
- Replies: 243
- Views: 79324
Re: 673 WA!!
still WA!!
- Fri Aug 31, 2012 8:28 pm
- Forum: Volume 6 (600-699)
- Topic: 673 - Parentheses Balance
- Replies: 243
- Views: 79324
673 WA!!
I am so tired for this problem!
Please any one tell me where is my error.
I tried many test case but WA!!
Please any one tell me where is my error.
I tried many test case but WA!!


Code: Select all
- Wed Aug 29, 2012 8:24 pm
- Forum: Volume 4 (400-499)
- Topic: 492 - Pig-Latin
- Replies: 213
- Views: 49409
Re: 492 why RE?
I changed but RE!!brianfry713 wrote:Doesn't match the sample I/O.
- Sun Jul 29, 2012 8:44 pm
- Forum: Volume 4 (400-499)
- Topic: 492 - Pig-Latin
- Replies: 213
- Views: 49409
492 why RE?
i am getting RE. Help me!
#include<stdio.h>
#include<string.h>
int isVowel(char ch)
{
int flag=0;
if(ch=='a'||ch=='A'||ch=='e'||ch=='E'||ch=='i'||ch=='I'||ch=='o'||ch=='O'||ch=='u'||ch=='U')
flag=1;
return flag;
}
void pigLatin(char str[10000])
{
long i,len,flag,flag1,b=0;
char ch;
len ...
#include<stdio.h>
#include<string.h>
int isVowel(char ch)
{
int flag=0;
if(ch=='a'||ch=='A'||ch=='e'||ch=='E'||ch=='i'||ch=='I'||ch=='o'||ch=='O'||ch=='u'||ch=='U')
flag=1;
return flag;
}
void pigLatin(char str[10000])
{
long i,len,flag,flag1,b=0;
char ch;
len ...
- Fri Jul 27, 2012 8:41 am
- Forum: Volume 4 (400-499)
- Topic: 489 - Hangman Judge
- Replies: 52
- Views: 23815
489 - Hangman Judge
I can't understand the condition number 6 of hangman. Please help me to understand the condition number 6.
- Thu Jul 26, 2012 9:45 am
- Forum: Volume 118 (11800-11899)
- Topic: 11827 - Maximum GCD
- Replies: 22
- Views: 8525
11827 Why WA?
Code: Select all
thank you sir! i got rank 57 with 0.004s :D