CSES - Datatähti 2018 peili - Results
Submission details
Task:Kyselyt
Sender:johku90
Submission time:2017-10-05 22:21:35 +0300
Language:C++
Status:READY
Result:12
Feedback
groupverdictscore
#1ACCEPTED12
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.18 s1details
#2--2details
#3--3details

Compiler report

input/code.cpp: In function 'std::string getNumber(int)':
input/code.cpp:15:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if(column + s.length() >= k){
                             ^

Code

#include <iostream>
#include <sstream>
#include <string.h>

using namespace std;

//12345678910111213141516171819202122232425

string getNumber(int k){
	int column = 0;
	for(int n = 1; true; n++){
		stringstream ss;
		ss<<n;
		string s = ss.str();
		if(column + s.length() >= k){
			int index = k - column;
			return s.substr(index - 1, 1);
		}
		
		column += s.length();
	}
}

int main(){
	int num;
    cin >> num;
    
	int* kArray = new int[num];
	
	for(int n=0; n<num; n++){
		int k;
		cin >> k;
		kArray[n] = k;
	}
	for(int n=0; n<num; n++){
		cout<<getNumber(kArray[n])<<endl;
	}
	
	delete [] kArray;
	
	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
...

Test 2

Group: 2

Verdict:

input
1000
615664
916441
627600
279508
...

correct output
1
2
3
2
2
...

user output
(empty)

Test 3

Group: 3

Verdict:

input
1000
672274832941907421
260504693279721732
646999966092970935
100853063389774434
...

correct output
7
2
2
0
9
...

user output
(empty)