λμ μ½λ
n = int(input())
for i in range(1,n+1):
cnt = 0
for j in str(i):
if j in ('3' , '6' , '9'):
cnt += 1
if cnt > 0:
print("-"*cnt , end=" ")
else:
print(i , end=" ")
1 λΆν° n κΉμ§ μ«μλ₯Ό μμλλ‘ μΆλ ₯
κ° μ«μμ 3,6,9 κ° ν¬ν¨λμ΄μλμ§ νμΈνκΈ° μν΄ λ¬Έμμ΄λ‘ λ³νν ν
λ°λ³΅λ¬Έμ μνν΄μ 체ν¬νλ€.
λ€λ₯Έ μ¬λ νμ΄
clap = i.count('3') + i.count('6') + i.count('9')
count ν¨μλ‘ νΈλ λ°©λ²λ μλ€.
λ¬Έμμ΄ μμμ μ°Ύκ³ μΆμ λ¬Έμμ κ°μλ₯Ό μ°Ύμ μ μλ€.
'Algorithm > SWEA' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[SWEA - D2] 1983. μ‘°κ΅μ μ±μ 맀기기 (0) | 2023.04.17 |
---|---|
[SWEA - D2] 1976. μκ° λ§μ (0) | 2023.04.15 |
[SWEA - D2] 1970. μ¬μ΄ κ±°μ€λ¦λ (0) | 2023.04.15 |
[SWEA - D2] 1940. κ°λ! RCμΉ΄! (0) | 2023.04.13 |
[SWEA - D2] 1948. λ μ§ κ³μ°κΈ° (0) | 2023.04.13 |