CSES - Datatähti 2018 alku - Results
Submission details
Task:Kyselyt
Sender:koneistitLiikaa
Submission time:2017-10-15 23:42:08 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.06 s1details
#20.06 s2details
#30.05 s3details

Code

#include <iostream>
#include <string>
using namespace std;

typedef long long ll;

ll p(int n, int x) {
	return x == 0 ? 1 : n*p(n, x-1);
}
static int const MAGICAL_CONSTANT = 17;

int f_ugly(ll n) {
	ll t[MAGICAL_CONSTANT];
	ll s[MAGICAL_CONSTANT];
	ll a = 0;
	for (int i{0}; i<MAGICAL_CONSTANT; i++) {
		t[i] = p(10, i) * 9 * (i+1);
		a += t[i];
		s[i] = a;
	}
	if (n < 10) {
			return n;
		}

		int c = 0;									// n of digits sorta
		for (int i{0}; i<MAGICAL_CONSTANT; i++) {
			if (s[i] < n) {
				c++;
			}
		}
		ll f = s[c-1];								// count of numDIGITSbers smaller than
	//	int d = to_string(n).length();				// n of digits
		ll r = p(10,c);

	//	cout << c << endl;
	//	cout << r << endl;
		ll temp = n-f;					// much doff
	//	cout << temp << endl;
		ll m = temp%(c+1);				// digits already built
		r += temp/(c+1);				// number we are building
	//	cout << r << endl;
		if (m == 0) {
			r -= 1;
		}
	//	cout << c << " " << m << endl;
//		cout << r << endl;
		ll sauli = p(10,c-m);
//		cout << sauli << endl;
		r /= sauli;

//		cout << r << endl;
		r %= 10;

		return r;

	//	cout << f << endl;
	//	cout << m << endl;							// digit of tha number
	//	cout << m << endl;
	//	cout << n << " " << c;
}

int main() {

//	for (int i{0}; i<MAGICAL_CONSTANT; i++) {
//		cout << t[i] << endl;
//	}
//	for (int i{0}; i<MAGICAL_CONSTANT; i++) {
//		cout << s[i] << endl;
//	}
//	ll n;
//	cin >> n;
//	cout << f_ugly(n);

	for (int i=0; i<100; i++) {
		cout << f_ugly(i);
	}
	return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
1000
582
214
723
273
...

correct output
0
1
7
7
6
...

user output
012345678901112131415161718191...

Test 2

Group: 2

Verdict:

input
1000
615664
916441
627600
279508
...

correct output
1
2
3
2
2
...

user output
012345678901112131415161718191...

Test 3

Group: 3

Verdict:

input
1000
672274832941907421
260504693279721732
646999966092970935
100853063389774434
...

correct output
7
2
2
0
9
...

user output
012345678901112131415161718191...