| Task: | Urkupillit |
| Sender: | Dentosal |
| Submission time: | 2015-01-29 12:49:07 +0200 |
| Language: | C++ |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.06 s | 1 | details |
| #2 | RUNTIME ERROR | 0.54 s | 1 | details |
| #3 | WRONG ANSWER | 0.06 s | 1 | details |
| #4 | WRONG ANSWER | 0.06 s | 1 | details |
| #5 | WRONG ANSWER | 0.06 s | 1 | details |
| #6 | WRONG ANSWER | 0.06 s | 2 | details |
| #7 | RUNTIME ERROR | 0.53 s | 2 | details |
| #8 | RUNTIME ERROR | 0.55 s | 2 | details |
| #9 | RUNTIME ERROR | 0.53 s | 2 | details |
| #10 | RUNTIME ERROR | 0.53 s | 2 | details |
| #11 | WRONG ANSWER | 0.09 s | 3 | details |
| #12 | WRONG ANSWER | 0.10 s | 3 | details |
| #13 | RUNTIME ERROR | 0.53 s | 3 | details |
| #14 | RUNTIME ERROR | 0.53 s | 3 | details |
| #15 | RUNTIME ERROR | 0.57 s | 3 | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:26:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i=0; i<n; ++i){cout << urut[i] << " ";}
^
input/code.cpp:19:15: warning: unused variable 'cursor' [-Wunused-variable]
unsigned int cursor=0;
^Code
#include <iostream>
#include <algorithm>
#include <cmath>
using namespace std;
int main() {
unsigned int n;
unsigned int k;
cin >> n;
cin >> k;
unsigned int urut[n];
for (unsigned int i = 0; i < n; ++i) {
urut[i]=n-i;
}
unsigned int cursor=0;
for (unsigned int i=0; i < n-k-1; ++i) {
swap(urut[i], urut[i+1]);
}
for (int i=0; i<n; ++i){cout << urut[i] << " ";}
cout << endl;
return 0;
}
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 5 0 |
| correct output |
|---|
| 1 2 3 4 5 |
| user output |
|---|
| 4 3 2 1 5 |
Test 2
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 5 10 |
| correct output |
|---|
| 5 4 3 2 1 |
| user output |
|---|
| (empty) |
Test 3
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 5 3 |
| correct output |
|---|
| 4 1 2 3 5 |
| user output |
|---|
| 4 5 3 2 1 |
Test 4
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 5 1 |
| correct output |
|---|
| 2 1 3 4 5 |
| user output |
|---|
| 4 3 2 5 1 |
Test 5
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 5 2 |
| correct output |
|---|
| 3 1 2 4 5 |
| user output |
|---|
| 4 3 5 2 1 |
Test 6
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 100 0 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 99 98 97 96 95 94 93 92 91 90 ... |
Test 7
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100 4950 |
| correct output |
|---|
| 100 99 98 97 96 95 94 93 92 91... |
| user output |
|---|
| (empty) |
Test 8
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100 2279 |
| correct output |
|---|
| 100 99 98 97 96 95 94 93 92 91... |
| user output |
|---|
| (empty) |
Test 9
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100 2528 |
| correct output |
|---|
| 100 99 98 97 96 95 94 93 92 91... |
| user output |
|---|
| (empty) |
Test 10
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100 4483 |
| correct output |
|---|
| 100 99 98 97 96 95 94 93 92 91... |
| user output |
|---|
| (empty) |
Test 11
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 100000 0 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 99999 99998 99997 99996 99995 ... |
Test 12
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 100000 4999950000 |
| correct output |
|---|
| 100000 99999 99998 99997 99996... |
| user output |
|---|
| 99999 99998 99997 99996 99995 ... |
Test 13
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 2969035543 |
| correct output |
|---|
| 100000 99999 99998 99997 99996... |
| user output |
|---|
| (empty) |
Test 14
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 2495939870 |
| correct output |
|---|
| 100000 99999 99998 99997 99996... |
| user output |
|---|
| (empty) |
Test 15
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 1279770330 |
| correct output |
|---|
| 100000 99999 99998 99997 99996... |
| user output |
|---|
| (empty) |
