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_tusing namespace std;inline dt getDigits(dt value) { // Max 64 bit: ~9000000000000000000if (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;}
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
input |
---|
1000 582 214 723 273 ... |
correct output |
---|
0 1 7 7 6 ... |
user output |
---|
l ... Truncated |
Test 2
Group: 2
Verdict: WRONG ANSWER
input |
---|
1000 615664 916441 627600 279508 ... |
correct output |
---|
1 2 3 2 2 ... |
user output |
---|
) � ... Truncated |
Test 3
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 672274832941907421 260504693279721732 646999966092970935 100853063389774434 ... |
correct output |
---|
7 2 2 0 9 ... |
user output |
---|
(empty) |