CSES - Datatähti 2018 alku - Results
Submission details
Task:Kyselyt
Sender:Nanohenry
Submission time:2017-10-13 22:36:46 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.07 s1details
#20.29 s2details
#3--3details

Code

#include <iostream>
#include <sstream>
#include <string>
#define dt uint64_t
using namespace std;
inline dt getDigits(dt value) { // Max 64 bit: ~9000000000000000000
if (value < 10) {
return 1;
} else if (value < 100) {
return 2;
} else if (value < 1000) {
return 3;
} else if (value < 10000) {
return 4;
} else if (value < 100000) {
return 5;
} else if (value < 1000000) {
return 6;
} else if (value < 10000000) {
return 7;
} else if (value < 100000000) {
return 8;
} else if (value < 1000000000) {
return 9;
} else if (value < 10000000000) {
return 10;
} else if (value < 100000000000) {
return 11;
} else if (value < 1000000000000) {
return 12;
} else if (value < 10000000000000) {
return 13;
} else if (value < 100000000000000) {
return 14;
} else if (value < 1000000000000000) {
return 15;
} else if (value < 10000000000000000) {
return 16;
} else if (value < 100000000000000000) {
return 17;
} else if (value < 1000000000000000000) {
return 18;
}
return 19;
}
int main() {
dt amount;
cin >> amount;
dt *a = new dt[amount];
dt cur;
dt index;
dt size;
dt digits;
dt minus;
string result;
for (dt i = 0; i < amount; i++) {
cin >> a[i];
}
for (dt i = 0; i < amount; i++) {
cur = a[i];
index = 1;
size = 0;
digits = 0;
minus = 1;
//ostringstream ss;
for (; size <= cur; index++) {
digits = getDigits(index);
if (size + digits >= cur) {
//ss << index;
result = to_string(index);
} else {
minus += digits;
}
size += digits;
}
cout << result.at(cur - minus) << '\n';
}
//while (1);
return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
1000
582
214
723
273
...

correct output
0
1
7
7
6
...

user output
1
1
8
8
7
...
Truncated

Test 2

Group: 2

Verdict:

input
1000
615664
916441
627600
279508
...

correct output
1
2
3
2
2
...

user output
1
2
3
2
2
...
Truncated

Test 3

Group: 3

Verdict:

input
1000
672274832941907421
260504693279721732
646999966092970935
100853063389774434
...

correct output
7
2
2
0
9
...

user output
(empty)