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
- Unreal Engine 5
- 백준
- Basic
- 기초
- C#
- String
- 시작해요 언리얼 2022
- python
- Programming
- Algorithm
- UE5
- Material
- 파이썬
- w3school
- Tutorial
- c++
- parameter
- 오류
- dynamic
- 재귀
- W3Schools
- 문제풀이
- guide
- Class
- DP
- 프로그래밍
- Unity
- loop
- dfs
- github
Archives
- Today
- Total
목록sizeof (1)
행복한 개구리
(1)의 수를 (2)의 각 자리수와 따로 곱한 뒤 (3) + ((4)*10) + ((5)*100) = (6)이 되는 것을 알면 됩니다. Python a = int(input()) b = input() mults = list(map(int, b)) result = [] third = a*mults[-1] fourth = a*mults[-2]*10 fifth = a*mults[0]*100 result = [third, fourth//10, fifth//100, third + fourth + fifth] for i in result: print(i) C# int a = int.Parse(Console.ReadLine()); string b = Console.ReadLine(); char[] c = b.ToCh..
Algorithm/BaekJoon
2022. 7. 11. 20:19