Task: | Kyselyt |
Sender: | Nanohenry |
Submission time: | 2017-10-13 23:09:47 +0300 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | TIME LIMIT EXCEEDED | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.04 s | 1 | details |
#2 | WRONG ANSWER | 0.27 s | 2 | details |
#3 | TIME LIMIT EXCEEDED | -- | 3 | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:74:32: warning: format '%c' expects argument of type 'int', but argument 3 has type 'uint64_t {aka long unsigned int}' [-Wformat=] sprintf(buffer, "%c", index); ^
Code
#include <iostream> #include <sstream> #define dt uint64_t using namespace std; inline dt getDigits(dt value) { // Max 64 bit: ~9000000000000000000 if (value < 10) { return 1; } else if (value < 100) { return 2; } else if (value < 1000) { return 3; } else if (value < 10000) { return 4; } else if (value < 100000) { return 5; } else if (value < 1000000) { return 6; } else if (value < 10000000) { return 7; } else if (value < 100000000) { return 8; } else if (value < 1000000000) { return 9; } else if (value < 10000000000) { return 10; } else if (value < 100000000000) { return 11; } else if (value < 1000000000000) { return 12; } else if (value < 10000000000000) { return 13; } else if (value < 100000000000000) { return 14; } else if (value < 1000000000000000) { return 15; } else if (value < 10000000000000000) { return 16; } else if (value < 100000000000000000) { return 17; } else if (value < 1000000000000000000) { return 18; } return 19; } int main() { dt amount; cin >> amount; dt *a = new dt[amount]; dt cur; dt index; dt size; dt digits; dt minus; char buffer[18]; for (dt i = 0; i < amount; i++) { cin >> a[i]; } for (dt i = 0; i < amount; i++) { cur = a[i]; index = 1; size = 0; digits = 0; minus = 1; //ostringstream ss; for (; size <= cur; index++) { digits = getDigits(index); if (size + digits >= cur) { //ss << index; sprintf(buffer, "%c", index); } else { minus += digits; } size += digits; } cout << buffer[cur - minus] << '\n'; } //while (1); return 0; }