Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Database
- HackCTF
- xcz.kr
- Digital Forensics
- Forensics
- 정렬
- C
- wargame
- CTF
- 써니나타스
- 구현
- 문자열
- cryptography
- Network
- SuNiNaTas
- writeup
- Python
- 수학
- Web Hacking
- 그리디 알고리즘
- MySQL
- 사칙연산
- 인코그니토
- 백준
- Incognito
- Text
- N0Named
- php
- Web
- misc
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 1076번 저항 본문
[Baekjoon/Python3] 1076번 저항
index = { # Dictionary
'black' : 0,
'brown' : 1,
'red' : 2,
'orange' : 3,
'yellow' : 4,
'green' : 5,
'blue' : 6,
'violet' : 7,
'grey' : 8,
'white' : 9
}
A = input()
B = input()
C = input()
res = index.get(A) * 10 + index.get(B)
for i in range(index.get(C)):
res *= 10
print(res)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 1094번 막대기 (0) | 2020.12.02 |
---|---|
[Baekjoon/Python3] 1085번 직사각형에서 탈출 (0) | 2020.12.02 |
[Baekjoon/Python3] 1075번 나누기 (0) | 2020.12.02 |
[Baekjoon/Python3] 1065번 한수 (1) | 2020.12.02 |
[Baekjoon/Python3] 1037번 약수 (0) | 2020.12.02 |
Comments