CSES - Datatähti 2018 peili - Results
Submission details
Task:Kyselyt
Sender:Symbiatch2
Submission time:2017-10-03 15:13:32 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.05 s1details
#20.06 s2details
#30.04 s3details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:30:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (pos = 0; pos < starts.size(); pos++)
                                   ^

Code

#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <sstream>

int main()
{
	int count;
	std::vector<int> starts;

	long tmp = 10;
	long tmp2 = 0;
	for (int i = 1; i < 18; i++)
	{
		starts.push_back(tmp2);
		tmp2 += i * tmp;
		tmp *= 10;
	}

	std::cin >> count;

	while (count-- > 0)
	{
		long number;

		std::cin >> number;

		int pos;
		for (pos = 0; pos < starts.size(); pos++)
		{
			if (starts[pos] > number)
			{
				pos--;
				break;
			}
		}

		number -= starts[pos];
		long innum = number % (pos + 1);
		long start = number / (pos + 1);
		long num = start;
		if (pos == 0)
			num--;

		std::ostringstream outs;
		outs << num;

		std::cout << outs.str()[innum] << std::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
1

1
2
9
...

Test 2

Group: 2

Verdict:

input
1000
615664
916441
627600
279508
...

correct output
1
2
3
2
2
...

user output
5
2
1
5
1
...

Test 3

Group: 3

Verdict:

input
1000
672274832941907421
260504693279721732
646999966092970935
100853063389774434
...

correct output
7
2
2
0
9
...

user output
6
8
6
8
5
...