From 9961221b9c17d960a2daa7cc643d0dda8d2428d5 Mon Sep 17 00:00:00 2001 From: jaykxo Date: Thu, 11 Sep 2025 18:50:24 +0900 Subject: [PATCH 1/5] =?UTF-8?q?Solved:=2011382=20=EA=BC=AC=EB=A7=88=20?= =?UTF-8?q?=EC=A0=95=EB=AF=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...82_\352\274\254\353\247\210_\354\240\225\353\257\274.py" | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 "jaykxo/week01/11382_\352\274\254\353\247\210_\354\240\225\353\257\274.py" diff --git "a/jaykxo/week01/11382_\352\274\254\353\247\210_\354\240\225\353\257\274.py" "b/jaykxo/week01/11382_\352\274\254\353\247\210_\354\240\225\353\257\274.py" new file mode 100644 index 0000000..80b02f3 --- /dev/null +++ "b/jaykxo/week01/11382_\352\274\254\353\247\210_\354\240\225\353\257\274.py" @@ -0,0 +1,6 @@ +import sys +input = sys.stdin.readline + +A, B, C = map(int, input().split()) + +print(A + B + C) \ No newline at end of file From 319d171bbb9c8f8f9d333ac126dea54fd22bdaa8 Mon Sep 17 00:00:00 2001 From: jaykxo Date: Thu, 11 Sep 2025 18:51:12 +0900 Subject: [PATCH 2/5] =?UTF-8?q?Solved:=202438=20=EB=B3=84=20=EC=B0=8D?= =?UTF-8?q?=EA=B8=B0=20-=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2438_\353\263\204_\354\260\215\352\270\260 - 1.py" | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 "jaykxo/week01/2438_\353\263\204_\354\260\215\352\270\260 - 1.py" diff --git "a/jaykxo/week01/2438_\353\263\204_\354\260\215\352\270\260 - 1.py" "b/jaykxo/week01/2438_\353\263\204_\354\260\215\352\270\260 - 1.py" new file mode 100644 index 0000000..9b17e30 --- /dev/null +++ "b/jaykxo/week01/2438_\353\263\204_\354\260\215\352\270\260 - 1.py" @@ -0,0 +1,6 @@ +import sys +input = sys.stdin.readline +N = int(input()) + +for i in range(N): + print("*" * (i + 1)) \ No newline at end of file From e4feacf17c6c199074b46d258f313a28f57ad221 Mon Sep 17 00:00:00 2001 From: jaykxo Date: Thu, 11 Sep 2025 19:18:10 +0900 Subject: [PATCH 3/5] Solved: 10952 A+B - 5 --- jaykxo/week02/10952_A+B-5.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 jaykxo/week02/10952_A+B-5.py diff --git a/jaykxo/week02/10952_A+B-5.py b/jaykxo/week02/10952_A+B-5.py new file mode 100644 index 0000000..7fdf9f0 --- /dev/null +++ b/jaykxo/week02/10952_A+B-5.py @@ -0,0 +1,8 @@ +import sys +input = sys.stdin.readline + +while True: + a, b = map(int, input().split()) + if a == 0 and b == 0: # 종료 조건 + break + print(a + b) \ No newline at end of file From 611cd910bd3eac85711bd856db404ffc7d6331db Mon Sep 17 00:00:00 2001 From: jaykxo Date: Thu, 11 Sep 2025 19:30:27 +0900 Subject: [PATCH 4/5] =?UTF-8?q?Solved:=2010807=20=EA=B0=9C=EC=88=98=20?= =?UTF-8?q?=EC=84=B8=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...60\234\354\210\230_\354\204\270\352\270\260.py" | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 "jaykxo/week02/10807_\352\260\234\354\210\230_\354\204\270\352\270\260.py" diff --git "a/jaykxo/week02/10807_\352\260\234\354\210\230_\354\204\270\352\270\260.py" "b/jaykxo/week02/10807_\352\260\234\354\210\230_\354\204\270\352\270\260.py" new file mode 100644 index 0000000..a8999a5 --- /dev/null +++ "b/jaykxo/week02/10807_\352\260\234\354\210\230_\354\204\270\352\270\260.py" @@ -0,0 +1,14 @@ +import sys +input = sys.stdin.readline + +N = int(input()) # 숫자 개수 입력 받기 +num = list(map(int, input().split())) # 숫자 리스트 입력 받기 +v = int(input()) # 찾을 숫자 입력 받기 + +count = 0 # 찾은 숫자 개수 초기화 + +for i in range(N): + if num[i] == v : # 현재 숫자가 찾는 숫자와 같은지 확인 + count += 1 # 같으면 개수 증가 + +print(count) # 결과 출력 (찾은 숫자의 개수) \ No newline at end of file From ed139c7f3ae489f630f87446d0b5cf6096615e16 Mon Sep 17 00:00:00 2001 From: jaykxo Date: Thu, 11 Sep 2025 19:46:45 +0900 Subject: [PATCH 5/5] =?UTF-8?q?Solved:=2010798=20=EC=84=B8=EB=A1=9C?= =?UTF-8?q?=EC=9D=BD=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...70\353\241\234\354\235\275\352\270\260.py" | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 "jaykxo/week02/10798_\354\204\270\353\241\234\354\235\275\352\270\260.py" diff --git "a/jaykxo/week02/10798_\354\204\270\353\241\234\354\235\275\352\270\260.py" "b/jaykxo/week02/10798_\354\204\270\353\241\234\354\235\275\352\270\260.py" new file mode 100644 index 0000000..6a57446 --- /dev/null +++ "b/jaykxo/week02/10798_\354\204\270\353\241\234\354\235\275\352\270\260.py" @@ -0,0 +1,21 @@ +import sys +input = sys.stdin.readline + +# 1) 5줄 입력받아 리스트에 저장 +lines = [] +for _ in range(5): + line = input().strip() # 한 줄 입력받고 개행 제거 + lines.append(line) + +# 2) 가장 긴 문자열의 길이 구하기 +max_len = max(len(line) for line in lines) + +# 3) 세로로 읽기: 열을 기준으로 각 줄을 돌며 문자 추가 +result = "" +for c in range(max_len): # 열(column) 기준 + for r in range(len(lines)): # 행(row) 기준 + if c < len(lines[r]): # 해당 줄에 문자가 존재하면 + result += lines[r][c] + +# 4) 결과 문자열 출력 +print(result) \ No newline at end of file