CSES - Datatähti 2018 alku - Results
Submission details
Task:Kyselyt
Sender:inv41idu53rn4m3
Submission time:2017-10-05 23:55:45 +0300
Language:C++
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED12
#2ACCEPTED25
#3ACCEPTED63
Test results
testverdicttimegroup
#1ACCEPTED0.06 s1details
#2ACCEPTED0.05 s2details
#3ACCEPTED0.06 s3details

Code

#include <iostream>
#include <cstdlib>
#include <sstream>

using namespace std;

unsigned long pow10(unsigned long x) {
    if (x == 0) {
        return 1;
    } else {
        return pow10(x - 1) * 10;
    }
}

int main() {
    char buffer[20];
    cin >> buffer;
    unsigned int count = atoi(buffer);

    for (unsigned int i = 0; i < count; i++) {
        cin >> buffer;
        unsigned long ordinal = atol(buffer);
        unsigned int magnitude = 0;

        while (ordinal > pow10(magnitude) * (magnitude + 1) * 9) {
            magnitude++;
            ordinal -= magnitude * pow10(magnitude - 1) * 9;
        }

        if (magnitude == 0) {
            cout << ordinal << endl;
            continue;
        }

        unsigned long value = pow10(magnitude) + (ordinal - 1) / (magnitude + 1);

        unsigned int thing = magnitude - (ordinal - 1) % (magnitude + 1);
        unsigned int digit = ((value % pow10(thing + 1)) - value % pow10(thing)) / pow10(thing);

        //cout << "value: " << value << endl; // These lines really came to handy when testing
        //cout << "magnitude: " << magnitude << endl;
        //cout << "ordinal: " << ordinal << endl;
        //cout << "thing: " << thing << endl;
        //cout << "top: " << ((value % pow10(thing + 1)) - value % pow10(thing)) << endl;
        //cout << "bottom: " << pow10(thing) << endl;

        cout << digit << endl;
    }

    return 0;
}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
1000
582
214
723
273
...

correct output
0
1
7
7
6
...

user output
0
1
7
7
6
...

Test 2

Group: 2

Verdict: ACCEPTED

input
1000
615664
916441
627600
279508
...

correct output
1
2
3
2
2
...

user output
1
2
3
2
2
...

Test 3

Group: 3

Verdict: ACCEPTED

input
1000
672274832941907421
260504693279721732
646999966092970935
100853063389774434
...

correct output
7
2
2
0
9
...

user output
7
2
2
0
9
...