Task: | Kyselyt |
Sender: | koneistitLiikaa |
Submission time: | 2017-10-15 23:07:45 +0300 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.05 s | 1 | details |
#2 | WRONG ANSWER | 0.06 s | 2 | details |
#3 | WRONG ANSWER | 0.05 s | 3 | details |
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);}int main() {int const MAGICAL_CONSTANT = 17;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;}// 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;int c = 0; // n of digits sortafor (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 digitsll 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 builtr += temp/(c+1); // number we are building// cout << r << endl;if (m == 0) {r -= 1;}r /= p(10,c-m);r %= 10;cout << r << endl;// cout << f << endl;// cout << m << endl; // digit of tha number// cout << m << endl;// cout << n << " " << c;return 0;}
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
input |
---|
1000 582 214 723 273 ... |
correct output |
---|
0 1 7 7 6 ... |
user output |
---|
7 |
Test 2
Group: 2
Verdict: WRONG ANSWER
input |
---|
1000 615664 916441 627600 279508 ... |
correct output |
---|
1 2 3 2 2 ... |
user output |
---|
7 |
Test 3
Group: 3
Verdict: WRONG ANSWER
input |
---|
1000 672274832941907421 260504693279721732 646999966092970935 100853063389774434 ... |
correct output |
---|
7 2 2 0 9 ... |
user output |
---|
7 |