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

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


Edited by author 13.05.2007 15:12
Dmitry 'Diman_YES' Kovalioff Please, use English while posting your messages (-) [7] // Problem 1370. Magician 12 May 2007 22:26
Alias (Alexander Prudaev) Re: Please, use English while posting your messages (-) [6] // Problem 1370. Magician 13 May 2007 10:06
blonde :) ha ha. It is joke about
WRITING MESSAGES WITH CAPS LOCK ON
BAron Which difference??? [5] // Problem 1370. Magician 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 :(
Alias (Alexander Prudaev) Re: Which difference??? [4] // Problem 1370. Magician 13 May 2007 12:40
12 335
1
2
3
4
5
6
7
8
9
0
7
7

answer
7123456789
BAron Thanks // Problem 1370. Magician 13 May 2007 15:06
Thanks for the test, I've got AC!
Andranik Re: Which difference??? [2] // Problem 1370. Magician 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?
Andranik Re: Which difference??? [1] // Problem 1370. Magician 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 ;)
a2ch Re: Which difference??? // Problem 1370. Magician 12 Aug 2018 21:13
Or you can use "%" :)
And yes,i'm necroposter )))
Khujamurod Murtozakulov (Tashkent U of IT) Re: WHY WA3??? PLEASE HELP!!!! // Problem 1370. Magician 7 Nov 2018 19:49
check for m >= n