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

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:31: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 = 100;
	long tmp2 = 9;
	starts.push_back(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;
			}
		}

		long enumber = number - starts[pos] - 1;
		long innum = enumber % (pos + 1);
		long start = enumber / (pos + 1);
		long num = (long)pow(10, pos) + start;

		std::cout << enumber << " " << num << " " << pos << " " << start << " " << innum << std::endl;

		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
472 257 2 157 1
5
104 134 2 34 2
4
613 304 2 204 1
...

Test 2

Group: 2

Verdict:

input
1000
615664
916441
627600
279508
...

correct output
1
2
3
2
2
...

user output
183554 130592 5 30592 2
0
484331 180721 5 80721 5
1
195490 132581 5 32581 4
...

Test 3

Group: 3

Verdict:

input
1000
672274832941907421
260504693279721732
646999966092970935
100853063389774434
...

correct output
7
2
2
0
9
...

user output
672274832941907420 10353828859...