# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
339174 | ammar2000 | 고장난 휴대전화기 (COCI14_mobitel) | C++17 | 1 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
string l[]={"2","22","222","3","33","333","4","44","444","5","55","555","6","66","666","7","77","777","7777","8","88","888","9","99","999","9999"};
map <int,int> mp;
string s;
int main()
{
int a;
for (int i=0;i<9;i++)
{
cin>>a;
mp[a]=i+1;
}
cin>>s;
for (int i=0;i<s.length();i++)
{if (i&&l[s[i]-'a'][0]==l[s[i-1]-'a'][0])
cout <<"#";
//cout <<s[i]-'a'<<" " ;
for (int g=0;g<l[s[i]-'a'].length();g++)
cout <<mp[l[s[i]-'a'][g]-'0'];}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |