CSES - Datatähti 2018 peili - Results
Submission details
Task:Kyselyt
Sender:L2K2
Submission time:2017-10-03 21:01:05 +0300
Language:C++
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED12
#2ACCEPTED25
#3ACCEPTED63
Test results
testverdicttimegroup
#1ACCEPTED0.06 s1details
#2ACCEPTED0.05 s2details
#3ACCEPTED0.04 s3details

Code

// g++ -std=c++0x -O2 -Wall kyselyt.cc -o kyselyt
#include <iostream>
#include <string>
#define DEBUG
#undef DEBUG
int main()
{
unsigned int q;
std::cin >> q;
if (q < 1 || q > 1000)
return 0;
#ifdef DEBUG
std::string merkkijono;
for (unsigned int i = 1; i < 1000000; ++i) {
merkkijono += std::to_string(i);
}
#endif
for (unsigned int Q = 0; Q < q; ++Q) {
unsigned long long k;
std::cin >> k;
#ifdef DEBUG
if (k < merkkijono.length())
std::cout << "Referenssivastaus: " << merkkijono[k - 1] << std::endl;
#endif
if (k <= 9) {
#ifdef DEBUG
std::cout << "Yrite: " << k << std::endl;
#endif
#ifndef DEBUG
std::cout << k << std::endl;
#endif
continue;
}
unsigned long long K = k;
K -= 1;
unsigned long long potenssi = 1;
for (unsigned int i = 2; i < 256; ++i) {
K -= 9 * potenssi * (i - 1);
if (K < 90 * potenssi * i) {
unsigned long long luku = 10 * potenssi + K / i;
#ifdef DEBUG
std::cout << "Luku: " << luku << std::endl;
std::cout << "Yrite: " << std::to_string(luku)[K % i] << std::endl;#endif
#endif
#ifndef DEBUG
std::cout << std::to_string(luku)[K % i] << std::endl;
#endif
break;
}
potenssi *= 10;
}
}
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
...
Truncated

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
...
Truncated

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
...
Truncated