CSES - Datatähti 2018 alku - Results
Submission details
Task:Kyselyt
Sender:Ilmari2000
Submission time:2017-10-14 12:51:18 +0300
Language:C++
Status:READY
Result:37
Feedback
groupverdictscore
#1ACCEPTED12
#2ACCEPTED25
#30
Test results
testverdicttimegroup
#1ACCEPTED0.05 s1details
#2ACCEPTED0.04 s2details
#30.05 s3details

Code

#include <iostream>
#include <vector>
#include <cmath>

using namespace std;

unsigned long long int nthDigit(unsigned long long int x, unsigned long long int pos)
{
	unsigned long long int digits = 0;
	unsigned long long int tmpnum = x;
	while(tmpnum > 0) { digits++; tmpnum /= 10; }

	return (x / (unsigned long long int)pow(10, digits - pos)) % 10;
}

int main()
{
	vector<unsigned long long int> places;

	unsigned long long int count;
	cin >> count;
	
	places.resize(count);

	for(unsigned long long int i = 0; i < count; i++)
		cin >> places[i];

	for(unsigned long long int i = 0; i < count; i++)
	{
		unsigned long long int num = 1;
		unsigned long long int exp = 0;
		places[i]--;

		while(1)
		{
			if(places[i] - 9 * pow(10, exp) * (exp + 1) > 0)
			{
				places[i] -= 9 * pow(10, exp) * (exp + 1);
				num *= 10;
				exp++;
			}
			else
				break;
		}
//		cout << "pla: " << places[i] << endl;
//		cout << "num: " << num << endl;
//		cout << "dig: " << exp + 1 << endl;
//		cout << "div: " << places[i] / (exp + 1) << endl;
//		cout << "mod: " << places[i] % (exp + 1) << endl;
	
		num += places[i] / (exp + 1);
//		cout << "num: " << num << endl;
		//places[i] % (exp + 1);
	
		/*while(1)
		{
			unsigned long long int sub = 0;
			unsigned long long int tmpnum = num;
			while(tmpnum > 0) { sub++; tmpnum /= 10; }
			if(places[i] - sub > 0)
			{
				places[i] -= sub;
				num++;
			}
			else
				break;
		}*/

		cout << nthDigit(num, places[i] % (exp + 1) + 1) << endl;
	}
}

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:

input
1000
672274832941907421
260504693279721732
646999966092970935
100853063389774434
...

correct output
7
2
2
0
9
...

user output
3
7
6
6
2
...