# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
882813 | unexpectedbro | 고장난 휴대전화기 (COCI14_mobitel) | C++14 | 1 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int main() {
map<int, string>q;
map<char, string>a;
q[1] = " ";
q[2] = "abc";
a[3] = "def";
q[4] = "ghi";
q[5] = "jkl";
q[6] = "mno";
q[7] = "pqrs";
q[8] = "tuv";
q[9] = "wxyz";
for (int i = 1; i <= 9; i++) {
int x; cin >> x;
string val = to_string(i);
for (auto c : q[x]) {
a[c] = val;
val += to_string(i);
}
}
string quest;
cin >> quest;
string res = "";
for (int i = 0; i < quest.size(); i++) {
string ans = a[quest[i]];
if (i) {
if (ans[0] == res.back()) {
res += "#";
}
}
res += ans;
}
cout << res << endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |