CSES - Putka Open 2015 – 1/6 - Results
Submission details
Task:Aita
Sender:
Submission time:2015-07-17 21:28:17 +0300
Language:Java
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED1.23 s1details
#2ACCEPTED1.22 s1details
#31.23 s1details
#4ACCEPTED1.23 s1details
#51.23 s1details
#6ACCEPTED1.57 s2details
#71.98 s2details
#8ACCEPTED1.10 s2details
#92.06 s2details
#101.22 s2details
#112.52 s3details
#122.56 s3details
#131.98 s3details
#14--3details
#15--3details

Code

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

/**
 *
 * @author Einar
 */
public class Aita {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {

        Scanner input = new Scanner(System.in);

        List<Integer> luvut = new ArrayList<Integer>();
        List<Integer> tulos = new ArrayList<Integer>();
        
        //int kpl = 5;
        //int ero = 2;
        
        int kpl = input.nextInt();
        int ero = input.nextInt();

        for(int i = 2; i <= kpl; i++) {
            
            luvut.add(i);
        }

        int luku = luvut.get(0);
        int koko;
        
        while(luvut.size() > 0) {

            koko = luvut.size();
            
            for(int i = 0; i < luvut.size(); i++) {

                if(luvut.get(i) >= (ero + luku) || luvut.get(i) <= (luku - ero)) {

                    tulos.add(luvut.get(i));
                    luku = luvut.get(i);
                    luvut.remove(i);
					break;
                }
            }
            
            if(koko == luvut.size()) {

                break;
            }
        }

        if(tulos.size() == (kpl - 1)) {
        
            System.out.print("1 ");

            for(int i = 0; i < tulos.size(); i++) {
                
                if(tulos.size() == (i + 1))
                    System.out.print(tulos.get(i));
                else
                    System.out.print(tulos.get(i) + " ");
            }
            
        } else {
            
            try {
                Thread.sleep(1000);                 //1000 milliseconds is one second.
            } catch(InterruptedException ex) {
                Thread.currentThread().interrupt();
            }
            
            System.out.print("QAQ");
        }
    }
}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
2 2

correct output
QAQ

user output
QAQ

Test 2

Group: 1

Verdict: ACCEPTED

input
3 2

correct output
QAQ

user output
QAQ

Test 3

Group: 1

Verdict:

input
4 2

correct output
3 1 4 2 

user output
QAQ

Test 4

Group: 1

Verdict: ACCEPTED

input
7 4

correct output
QAQ

user output
QAQ

Test 5

Group: 1

Verdict:

input
8 4

correct output
5 1 6 2 7 3 8 4 

user output
QAQ

Test 6

Group: 2

Verdict: ACCEPTED

input
80476 2

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

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

Test 7

Group: 2

Verdict:

input
68652 2

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

user output
QAQ

Test 8

Group: 2

Verdict: ACCEPTED

input
62735 2

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

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

Test 9

Group: 2

Verdict:

input
71954 2

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

user output
QAQ

Test 10

Group: 2

Verdict:

input
4 2

correct output
3 1 4 2 

user output
QAQ

Test 11

Group: 3

Verdict:

input
89814 3

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

user output
QAQ

Test 12

Group: 3

Verdict:

input
91140 5

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

user output
QAQ

Test 13

Group: 3

Verdict:

input
66703 16675

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

user output
QAQ

Test 14

Group: 3

Verdict:

input
66666 33333

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

user output
(empty)

Test 15

Group: 3

Verdict:

input
66666 33334

correct output
QAQ

user output
(empty)