Search
Duplicate
📗

저항

주차
문제번호
1076
언어
C++
티어
브론즈
유형
구현
nj_Blog
nj_상태
이해도
100%
풀이
사람
이해도 2
13 more properties

문제접근

Map 자료구조 사용하여 맞는 key를 value 추가

놓쳤던 부분

앞이 0일때 예외처리

코드

2032 KB

0 ms

#include <iostream> #include <map> #include <string> using namespace std; int main(void) { map<string, string> m; string answer = ""; string input; bool flag1 = false; bool flag2 = false; ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); m["black"] = "0"; m["brown"] = "1"; m["red"] = "2"; m["orange"] = "3"; m["yellow"] = "4"; m["green"] = "5"; m["blue"] = "6"; m["violet"] = "7"; m["grey"] = "8"; m["white"] = "9"; for (int i = 0; i < 2; i++) { cin >> input; if (i == 0 && input == "black") { flag1 = true; continue ; } else if (flag1 && input == "black") { flag2 = true; continue ; } answer += m[input]; } cin >> input; if (flag2) answer = "0"; else { for (int j = 0; j < stoi(m[input]); j++) answer += "0"; } cout << answer; return (0); }
C++
복사