// 문자열 s의 길이 : 100000 이하의 자연수
#include<iostream>
#include<string>
#include<chrono>
using namespace std;
int solution(string s) {
}
int main() {
int T;
cin >> T;
while (T--) {
string s;
cin >> s;
std::chrono::system_clock::time_point start = std::chrono::system_clock::now();
cout << solution(s) << endl;
std::chrono::duration<double> sec = std::chrono::system_clock::now() - start;
cout << sec.count() * 1000 << "ms" << endl;
cout << endl;
}
return 0;
}
'알고리즘 일기' 카테고리의 다른 글
swea_d1_2063_중간값찾기 (0) | 2020.01.20 |
---|---|
swea_d3_3307_최장증가부분수열 (0) | 2020.01.20 |
c++ map 사용법 (0) | 2019.12.10 |
프로그래머스 : 저울 (0) | 2019.12.10 |
프로그래머스: 이중우선순위 큐 (0) | 2019.12.10 |
댓글