CSES - Datatähti 2018 alku - Results
Submission details
Task:Kyselyt
Sender:1
Submission time:2017-10-07 18:36:56 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.04 s1details
#20.05 s2details
#30.06 s3details

Code

#include <iostream>
#include <string>
#include <cmath>
#include <vector>
//#include <set>

using namespace std;

//typedef unsigned long ul;
typedef unsigned long long ull;

ull cms(int mag) { //calculate magnitude size
    ull c = 0;
    for (int i = 1; i <= mag; i++) {
        c += (pow(10, i) - pow(10, i -1)) * i;
    }
    return c;
}

int get_mag(ull n) {
    ull c = 0;
    int i = 1;
    while (c < n) {
        c += (pow(10, i) - pow(10, i - 1)) * i;
        i += 1;
    }
    return i - 1;
}

char locate_digit(ull n) {
    if (n == 1) return '1';
    if (n >= 10) ++n;
    int mag = get_mag(n);
    n -= cms(mag - 1);
    ull i = pow(10, mag - 1) + ceil(n / mag) - 1;
    string str = to_string(i);
    //cout << " | n: " << n%mag << " | i: " << i << " | ans: " << str[n % mag] << endl;
    return str[n % mag];
}


int main(int argc, const char * argv[]) {
    int num, x;
    cin >> num;
    vector <ull> vec = {};
    for (int i = 0; i < num; i++) {
        cin >> x;
        vec.push_back(x);
    }
    for (int i = 0; i < num; i++) {
        cout << locate_digit(vec[i]) << endl;
    }
    return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
1000
582
214
723
273
...

correct output
0
1
7
7
6
...

user output
3
7
7
2
9
...

Test 2

Group: 2

Verdict:

input
1000
615664
916441
627600
279508
...

correct output
1
2
3
2
2
...

user output
1
7
1
5
5
...

Test 3

Group: 3

Verdict:

input
1000
672274832941907421
260504693279721732
646999966092970935
100853063389774434
...

correct output
7
2
2
0
9
...

user output
0
0
0
0
0
...