Search found 26 matches: 11734

Searched query: 11734

by al_noman
Tue Apr 28, 2015 3:36 pm
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: 11734 - Big Number of Teams will Solve This

I am getting Wrong Answer. I can't find the bug. Below is my code #include <stdio.h> #include <iostream> #include <string.h> using namespace std; int main() { char teamInput[50], judgeInput[50]; int numberOfTestCase, teamInputLength, judgeInputLength, i,j,spaceFlag, errorFlag; cin >> numberOfTestCas...
by lighted
Sun Nov 30, 2014 5:52 pm
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: 11734 - Big Number of Teams will Solve This

The first line is the team’s output and it contains extra spaces. You can check critical input on uDebug. http://www.udebug.com/UVa/11734 So correct answer is Case 2: Output Format Error Each line consists of at least one and at most 20 characters. But according to problem description this ...
by ssavi
Sun Nov 30, 2014 4:37 pm
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: 11734 why WA???

Hi v1n1t sir , brianfry713, Thanks for the test cases. Also, here's some other input / output I found useful during testing / debugging. Input: 5 t hisIsLarge but mor thisIslarge thisIsLarge thisIsLarge t this this LargeWo rd LargeWord AC Output: Case 1: Wrong Answer Case 2: Output Format Error Case...
by lighted
Sat Sep 20, 2014 12:20 pm
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: 11734 - Big Number of Teams will Solve This

Try to add line

Code: Select all

cin>>n;

while (getchar() != '\n') ;

while(n)
by RedCode119
Fri Sep 19, 2014 7:51 pm
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: 11734 - Big Number of Teams will Solve This

can't understand why " cin>>n " doesn't work. if i input the value of n and hit enter button, it takes the value of t(string) too. " getline(t); " and "cin>>n; " works togather, i cannot hit enter key between them. but i works after 2nd case . here's the code , pls help...
by mhsn06
Wed Aug 20, 2014 5:47 pm
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: WA 11734 - Big Number of Teams will Solve This

Finally got AC.
Check for the AC input. For future :D

Code: Select all

3
mmmmmmm
mmmmmmmmm
m m m
mmm
m                 m
m                 m

Code: Select all

Case 1: Wrong Answer
Case 2: Output Format Error
Case 3: Yes

There MUST be a newline after the last line.
8)
by lighted
Mon Aug 18, 2014 4:40 pm
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: WA 11734 - Big Number of Teams will Solve This

Use search and check input in existing threads. http://acm.uva.es/board/search.php?keywords=11734&sid=ed3a219d0059329b04603f8e41046297 One example Input 2 no space please nospaceplease no space please no space please AC output: Case 1: Output Format Error Case 2: ...
by mhsn06
Mon Aug 18, 2014 3:53 pm
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

WA 11734 - Big Number of Teams will Solve This

Getting WA!! Can't find bug. help please

Code: Select all

 Code Removed after got AC  :D 
by uDebug
Tue Mar 18, 2014 8:05 am
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: 11734 why WA???

brianfry713, Thanks for the test cases. Also, here's some other input / output I found useful during testing / debugging. Input: 5 t hisIsLarge but mor thisIslarge thisIsLarge thisIsLarge t this this LargeWo rd LargeWord AC Output: Case 1: Wrong Answer Case 2: Output Format Error Case 3: Wrong Answe...
by brianfry713
Mon Apr 30, 2012 9:38 pm
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: 11734 why WA???

Input

Code: Select all

2
no space        please
nospaceplease
no space        please
no space please
AC output:

Code: Select all

Case 1: Output Format Error
Case 2: Output Format Error
by cse.mehedi
Tue Apr 03, 2012 3:25 am
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: 11734 why WA???

brianfry713 wrote:Input

Code: Select all

1
no spac        please
nospaceplease
AC output:

Code: Select all

Case 1: Wrong Answer
Thank you brianfry713. I got AC! :)
by brianfry713
Mon Apr 02, 2012 9:06 pm
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: 11734 why WA???

Input

Code: Select all

1
no spac        please
nospaceplease
AC output:

Code: Select all

Case 1: Wrong Answer
by cse.mehedi
Sat Mar 31, 2012 10:54 am
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: 11734 why WA???

I have changed but again WA! :(
by brianfry713
Fri Mar 30, 2012 7:00 pm
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

Re: 11734 why WA???

Doesn't match the sample I/O.
by cse.mehedi
Wed Mar 28, 2012 8:37 am
Forum: Volume 117 (11700-11799)
Topic: 11734 - Big Number of Teams will Solve This
Replies: 26
Views: 11371

11734 why WA???

Plz, help me!! :(

Code: Select all

Removed after AC

Go to advanced search