Submission #4045579


Source Code Expand

#include <iostream>
#include <string>
#include <map>
using namespace std;

map<string, int> mp;
int main() {
	string S; int K; cin >> S >> K;
	for(int i=0; i<S.size(); ++i){
		for(int j=1; i+j<=S.size(); ++j) ++mp[S.substr(i, j)];
	}
	auto itr=mp.begin();
	for(int i=1; i<K; ++i) ++itr;
	cout << itr->first << endl;
	return 0;
}

Submission Info

Submission Time
Task C - K-th Substring
User ward1302
Language C++14 (GCC 5.4.1)
Score 200
Code Size 343 Byte
Status TLE
Exec Time 2228 ms
Memory 2014208 KB

Judge Result

Set Name Sample Subtask All
Score / Max Score 0 / 0 200 / 200 0 / 100
Status
AC × 3
AC × 11
AC × 11
TLE × 8
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt
Subtask 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 2_011.txt, 2_012.txt, 2_013.txt, 2_014.txt, 2_015.txt, 2_016.txt, 2_017.txt, 2_018.txt
Case Name Status Exec Time Memory
0_000.txt AC 1 ms 256 KB
0_001.txt AC 1 ms 256 KB
0_002.txt AC 1 ms 256 KB
1_003.txt AC 1 ms 256 KB
1_004.txt AC 1 ms 256 KB
1_005.txt AC 1 ms 256 KB
1_006.txt AC 1 ms 256 KB
1_007.txt AC 1 ms 256 KB
1_008.txt AC 2 ms 384 KB
1_009.txt AC 1 ms 256 KB
1_010.txt AC 2 ms 384 KB
2_011.txt TLE 2104 ms 16384 KB
2_012.txt TLE 2105 ms 22144 KB
2_013.txt TLE 2211 ms 1742976 KB
2_014.txt TLE 2219 ms 1923072 KB
2_015.txt TLE 2209 ms 1677440 KB
2_016.txt TLE 2227 ms 1938688 KB
2_017.txt TLE 2226 ms 2014208 KB
2_018.txt TLE 2228 ms 1988864 KB