CSES - Datatähti 2018 alku - Results
Submission details
Task:Kyselyt
Sender:ArktinenKarpalo
Submission time:2017-10-05 12:42:02 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.05 s1details
#20.04 s2details
#30.05 s3details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:9:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i=0; i<q; i++) {
                 ^

Code

#include <bits/stdc++.h>

using namespace std;

unsigned long long q, k, jwerj, f, l, g, jj;

int main() {
	cin >> q;
	for(int i=0; i<q; i++) {
		cin >> k;
		if(k<10) {
			cout << k << "\n";
			continue;
		}
		jwerj = 0;
		l = 0;
		for(int j=0; k>=jwerj+j*(9*pow(10, j-1)); j++) {
			l++;
			jwerj +=j*(unsigned long long)(9*pow(10, j-1));
			cout << jwerj << " j " << j<<endl;
		}
		f = k-jwerj;
		jj = f%l;
		if(jj==0)
			jj = l;
		if(f==0)
			jj = l-1;
		f = (f+l-1)/l;
		g = f+9;
			if(l>2)
				g += (unsigned long long)pow(10, l-1)-10;
		cout << to_string(g)[jj-1] << "\n";
		}
}

Test details

Test 1

Group: 1

Verdict:

input
1000
582
214
723
273
...

correct output
0
1
7
7
6
...

user output
0 j 0
9 j 1
189 j 2
0
0 j 0
...

Test 2

Group: 2

Verdict:

input
1000
615664
916441
627600
279508
...

correct output
1
2
3
2
2
...

user output
0 j 0
9 j 1
189 j 2
2889 j 3
38889 j 4
...

Test 3

Group: 3

Verdict:

input
1000
672274832941907421
260504693279721732
646999966092970935
100853063389774434
...

correct output
7
2
2
0
9
...

user output
0 j 0
9 j 1
189 j 2
2889 j 3
38889 j 4
...