CSES - Datatähti 2018 alku - Results
Submission details
Task:Kyselyt
Sender:1
Submission time:2017-10-07 21:41:58 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.06 s1details
#20.05 s2details
#30.07 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) {
int mag = get_mag(n);
n -= cms(mag - 1);
ull i = pow(10, mag - 1) + ceil((float)n / (float)mag) - 1;
string str = to_string(i);
//cout << " | n: " << n%mag << " | i: " << i << " | ans: " << str[(n+1) % mag] << endl;
return str[(n+1) % mag];
}
int main(int argc, const char * argv[]) {
/*for (int i = 1; i <= 1000; i++) {
locate_digit(i);
//cout << locate_digit(i) << endl;
}*/
int num;
ull 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]) - '0' << 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
8
7
2
9
...
Truncated

Test 2

Group: 2

Verdict:

input
1000
615664
916441
627600
279508
...

correct output
1
2
3
2
2
...

user output
1
8
1
5
5
...
Truncated

Test 3

Group: 3

Verdict:

input
1000
672274832941907421
260504693279721732
646999966092970935
100853063389774434
...

correct output
7
2
2
0
9
...

user output
0
7
8
7
8
...
Truncated