ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1370. Magician

WHY WA3??? PLEASE HELP!!!!
Posted by BAron 10 May 2007 21:41
I THINK THAT MY PROGRAM MUST HAVE AC BUT WA3
WHAT THE 3 TEST????
PLEASE POST TEST №3!!!!!!!
A blonde? ;) (-)
Posted by Dmitry 'Diman_YES' Kovalioff 11 May 2007 21:50
No subject
Posted by BAron 12 May 2007 17:29


Edited by author 13.05.2007 15:12
Please, use English while posting your messages (-)
Posted by Dmitry 'Diman_YES' Kovalioff 12 May 2007 22:26
Re: Please, use English while posting your messages (-)
Posted by Alias (Alexander Prudaev) 13 May 2007 10:06
blonde :) ha ha. It is joke about
WRITING MESSAGES WITH CAPS LOCK ON
Which difference???
Posted by BAron 13 May 2007 10:56
Which difference write messages WITH CAPS LOCK ON or with caps lock off?


Please post some tests! I dont know why my program had WA :(
Re: Which difference???
Posted by Alias (Alexander Prudaev) 13 May 2007 12:40
12 335
1
2
3
4
5
6
7
8
9
0
7
7

answer
7123456789
Thanks
Posted by BAron 13 May 2007 15:06
Thanks for the test, I've got AC!
Re: Which difference???
Posted by Andranik 15 Jul 2010 01:44
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
    int i,n,m;
    cin>>n>>m;
    long int *a=new long int [n];
    for(i=0;i<n;i++)
        cin>>a[i];
    rotate(a,a+m,a+n);
    long int b[10];
    for(i=0;i<10;i++)
        b[i]=a[i];
    for(i=0;i<10;i++)
        cout<<b[i];
    cout<<endl;
    return 0;
}

the test of Alias doesn't work,but why?What is incorrect in code?
Re: Which difference???
Posted by Andranik 15 Jul 2010 23:18
Already got AC....this code is right,you only need to decrease the quantity of ranges by decreasing the "m".......make m<n and everything will be  ok ;)
Re: Which difference???
Posted by a2ch 12 Aug 2018 21:13
Or you can use "%" :)
And yes,i'm necroposter )))
Re: WHY WA3??? PLEASE HELP!!!!
check for m >= n