CSES - Putka Open 2015 – 1/6 - Results
Submission details
Task:Aita
Sender:
Submission time:2015-07-19 00:10:16 +0300
Language:Java
Status:READY
Result:28
Feedback
groupverdictscore
#10
#2ACCEPTED28
#30
Test results
testverdicttimegroup
#10.23 s1details
#20.23 s1details
#3ACCEPTED0.23 s1details
#40.22 s1details
#50.21 s1details
#6ACCEPTED0.33 s2details
#7ACCEPTED0.31 s2details
#8ACCEPTED0.31 s2details
#9ACCEPTED0.34 s2details
#10ACCEPTED0.22 s2details
#11ACCEPTED0.35 s3details
#12ACCEPTED0.35 s3details
#13ACCEPTED0.34 s3details
#140.31 s3details
#150.31 s3details

Code

//package putka1.aita;

import java.util.Scanner;

/**
 *
 * @author Adreno
 */
public class Putka1Aita {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        int n = input.nextInt();
        int k = input.nextInt();
        StringBuilder j = new StringBuilder("");
        int alottaja = 2;
        int nykyinen = 2;
        int count = 0;
        while (alottaja < 1+k) {
            while (nykyinen <= n) {
                j.append(nykyinen + " ");
                nykyinen += k;
                count++;
            }
            alottaja++;
            nykyinen = alottaja;
        }
        alottaja = 1;
        nykyinen = 1;
        while (nykyinen <= n) {
            j.append(nykyinen + " ");
            nykyinen += k;
            count++;
        }
        if (count < n) System.out.println("QAQ");
        else System.out.println(j);
    }
    
}

Test details

Test 1

Group: 1

Verdict:

input
2 2

correct output
QAQ

user output
2 1 

Test 2

Group: 1

Verdict:

input
3 2

correct output
QAQ

user output
2 1 3 

Test 3

Group: 1

Verdict: ACCEPTED

input
4 2

correct output
3 1 4 2 

user output
2 4 1 3 

Test 4

Group: 1

Verdict:

input
7 4

correct output
QAQ

user output
2 6 3 7 4 1 5 

Test 5

Group: 1

Verdict:

input
8 4

correct output
5 1 6 2 7 3 8 4 

user output
2 6 3 7 4 8 1 5 

Test 6

Group: 2

Verdict: ACCEPTED

input
80476 2

correct output
40239 1 40240 2 40241 3 40242 ...

user output
2 4 6 8 10 12 14 16 18 20 22 2...

Test 7

Group: 2

Verdict: ACCEPTED

input
68652 2

correct output
34327 1 34328 2 34329 3 34330 ...

user output
2 4 6 8 10 12 14 16 18 20 22 2...

Test 8

Group: 2

Verdict: ACCEPTED

input
62735 2

correct output
31368 1 31369 2 31370 3 31371 ...

user output
2 4 6 8 10 12 14 16 18 20 22 2...

Test 9

Group: 2

Verdict: ACCEPTED

input
71954 2

correct output
35978 1 35979 2 35980 3 35981 ...

user output
2 4 6 8 10 12 14 16 18 20 22 2...

Test 10

Group: 2

Verdict: ACCEPTED

input
4 2

correct output
3 1 4 2 

user output
2 4 1 3 

Test 11

Group: 3

Verdict: ACCEPTED

input
89814 3

correct output
44908 1 44909 2 44910 3 44911 ...

user output
2 5 8 11 14 17 20 23 26 29 32 ...

Test 12

Group: 3

Verdict: ACCEPTED

input
91140 5

correct output
45571 1 45572 2 45573 3 45574 ...

user output
2 7 12 17 22 27 32 37 42 47 52...

Test 13

Group: 3

Verdict: ACCEPTED

input
66703 16675

correct output
33352 1 33353 2 33354 3 33355 ...

user output
2 16677 33352 50027 66702 3 16...

Test 14

Group: 3

Verdict:

input
66666 33333

correct output
33334 1 33335 2 33336 3 33337 ...

user output
2 33335 3 33336 4 33337 5 3333...

Test 15

Group: 3

Verdict:

input
66666 33334

correct output
QAQ

user output
2 33336 3 33337 4 33338 5 3333...