| Task: | Kyselyt |
| Sender: | luxask |
| Submission time: | 2017-10-06 21:15:21 +0300 |
| Language: | C++ |
| Status: | READY |
| Result: | 37 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 12 |
| #2 | ACCEPTED | 25 |
| #3 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.06 s | 1 | details |
| #2 | ACCEPTED | 0.05 s | 2 | details |
| #3 | WRONG ANSWER | 0.05 s | 3 | details |
Code
#include <iostream>
#include <vector>
#include <math.h>
#include <string>
using namespace std;
uint64_t mod(uint64_t x, uint64_t y) {
return x - y * (x / y);
}
vector<uint64_t> getIndexes() {
uint64_t count, num;
vector<uint64_t> indexes;
cin >> count;
for (uint64_t i = 0; i < count; ++i)
{
cin >> num;
indexes.push_back(num);
}
return indexes;
}
uint64_t f(uint64_t x) {
return 9 * x * pow(10, x-1);
}
uint64_t getFirstNumber(uint64_t index, uint64_t numCount) {
return floor(index / (numCount * pow(10, numCount-1))) + 1;
}
uint64_t getMiddleNumber(uint64_t index, uint64_t numCount, uint64_t subNumber) {
uint64_t j = floor(floor(index / numCount) / pow(10, numCount - subNumber));
return mod(j, 10);
}
uint64_t getLastNumber(uint64_t index, uint64_t numCount) {
return mod(((index / numCount) - 1), 10);
}
uint64_t getNumberFromIndex(uint64_t index) {
if (index <= 9)
return index;
uint64_t numCount = 1;
while (index > f(numCount)) {
index -= f(numCount);
numCount++;
}
switch (uint64_t subNumber = mod(index, numCount)){
case 0:
return getLastNumber(index, numCount);
break;
case 1:
return getFirstNumber(index, numCount);
break;
default:
return getMiddleNumber(index, numCount, subNumber);
break;
}
}
void test(uint64_t n) {
string right, guess;
for (unsigned i=1; i<n; i++)
guess += to_string(getNumberFromIndex(i));
for (unsigned i=1; i<n; i++)
right += to_string(i);
right = right.substr(0, n-1);
if (right.compare(guess) == 0)
cout << "Right!";
else
cout << right << '\n' << guess << '\n';
}
void real() {
auto indexes = getIndexes();
for (unsigned i=0; i<indexes.size(); i++)
cout << getNumberFromIndex(indexes.at(i)) << '\n';
}
int main() {
//test(pow(10, 9));
real();
return 0;
}
Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 1000 582 214 723 273 ... |
| correct output |
|---|
| 0 1 7 7 6 ... |
| user output |
|---|
| 0 1 7 7 6 ... Truncated |
Test 2
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 1000 615664 916441 627600 279508 ... |
| correct output |
|---|
| 1 2 3 2 2 ... |
| user output |
|---|
| 1 2 3 2 2 ... Truncated |
Test 3
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 1000 672274832941907421 260504693279721732 646999966092970935 100853063389774434 ... |
| correct output |
|---|
| 7 2 2 0 9 ... |
| user output |
|---|
| 7 2 2 0 9 ... Truncated |
