CSES - Datatähti 2015 loppu - Results
Submission details
Task:Urkupillit
Sender:Hansuzu
Submission time:2015-01-29 14:04:04 +0200
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.06 s1details
#2ACCEPTED0.09 s1details
#3ACCEPTED0.07 s1details
#4ACCEPTED0.06 s1details
#5ACCEPTED0.06 s1details
#60.06 s2details
#7ACCEPTED0.08 s2details
#80.06 s2details
#90.05 s2details
#100.06 s2details
#110.09 s3details
#120.09 s3details
#130.09 s3details
#140.08 s3details
#150.08 s3details

Code

#include <iostream>
using namespace std;


int main(){
  ios_base::sync_with_stdio(0);
  cin.tie(0);
  int n, k;
  cin >> n >> k;
  int i=0;
  int p=0;
  while (k>0){
    if (k<n-i){
      p=n-i-1 -k;
      k=0;
    }else{
      ++i;
      k-=n-i-1;
    }
  }
  for (int j=0; j<i; ++j) cout << n-j << ' ';
  for (int j=1; j<=p; ++j) cout << j << ' ';
  cout << n-i << ' ';
  for (int j=p+1; j<n-i; ++j) cout << j << ' ';
}

Test details

Test 1

Group: 1

Verdict:

input
5 0

correct output
1 2 3 4 5 

user output
5 1 2 3 4 

Test 2

Group: 1

Verdict: ACCEPTED

input
5 10

correct output
5 4 3 2 1 

user output
5 4 3 2 1 0 -1 -2 -3 -4 -5 -6 ...

Test 3

Group: 1

Verdict: ACCEPTED

input
5 3

correct output
4 1 2 3 5 

user output
1 5 2 3 4 

Test 4

Group: 1

Verdict: ACCEPTED

input
5 1

correct output
2 1 3 4 5 

user output
1 2 3 5 4 

Test 5

Group: 1

Verdict: ACCEPTED

input
5 2

correct output
3 1 2 4 5 

user output
1 2 5 3 4 

Test 6

Group: 2

Verdict:

input
100 0

correct output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

user output
100 1 2 3 4 5 6 7 8 9 10 11 12...

Test 7

Group: 2

Verdict: ACCEPTED

input
100 4950

correct output
100 99 98 97 96 95 94 93 92 91...

user output
100 99 98 97 96 95 94 93 92 91...

Test 8

Group: 2

Verdict:

input
100 2279

correct output
100 99 98 97 96 95 94 93 92 91...

user output
100 99 98 97 96 95 94 93 92 91...

Test 9

Group: 2

Verdict:

input
100 2528

correct output
100 99 98 97 96 95 94 93 92 91...

user output
100 99 98 97 96 95 94 93 92 91...

Test 10

Group: 2

Verdict:

input
100 4483

correct output
100 99 98 97 96 95 94 93 92 91...

user output
100 99 98 97 96 95 94 93 92 91...

Test 11

Group: 3

Verdict:

input
100000 0

correct output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

user output
100000 1 2 3 4 5 6 7 8 9 10 11...

Test 12

Group: 3

Verdict:

input
100000 4999950000

correct output
100000 99999 99998 99997 99996...

user output
100000 99999 99998 99997 99996...

Test 13

Group: 3

Verdict:

input
100000 2969035543

correct output
100000 99999 99998 99997 99996...

user output
100000 99999 99998 99997 99996...

Test 14

Group: 3

Verdict:

input
100000 2495939870

correct output
100000 99999 99998 99997 99996...

user output
100000 99999 99998 99997 99996...

Test 15

Group: 3

Verdict:

input
100000 1279770330

correct output
100000 99999 99998 99997 99996...

user output
100000 99999 99998 99997 99996...