# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
920517 | speedcode | 고장난 휴대전화기 (COCI14_mobitel) | C++17 | 1 ms | 600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
map<char, pair<int, int>> behaviours = {
{' ', {1,1}},
{'a', {2,1}},
{'b', {2,2}},
{'c', {2,3}},
{'d', {3,1}},
{'e', {3,2}},
{'f', {3,3}},
{'g', {4,1}},
{'h', {4,2}},
{'i', {4,3}},
{'j', {5,1}},
{'k', {5,2}},
{'l', {5,3}},
{'m', {6,1}},
{'n', {6,2}},
{'o', {6,3}},
{'p', {7,1}},
{'q', {7,2}},
{'r', {7,3}},
{'s', {7,4}},
{'t', {8,1}},
{'u', {8,2}},
{'v', {8,3}},
{'w', {9,1}},
{'x', {9,2}},
{'y', {9,3}},
{'z', {9,4}},
};
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int touches[10];
int x;
for(int i = 1; i <= 9; i++){
cin >> x;
touches[x] = i;
}
cin.ignore();
string s;
getline(cin, s);
int lastTouch = 0;
for(char c : s){
if(behaviours[c].first == lastTouch)
cout << '#';
lastTouch = behaviours[c].first;
for(int i = 0; i < behaviours[c].second; i++) cout << touches[behaviours[c].first];
}
cout << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |