From 1ff6439502fd5ae7a0e561f160cdebaa4539cf6c Mon Sep 17 00:00:00 2001 From: SUMIN Date: Sat, 11 Apr 2026 11:55:59 +0900 Subject: [PATCH] =?UTF-8?q?Upload=20files=20to=20"=EB=B0=B1=EC=A4=80"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 백준/3029.py | 38 ++++++++++++++++++++++++++++++++++++++ 백준/3663.py | 26 ++++++++++++++++++++++++++ 백준/4796.py | 13 +++++++++++++ 백준/9251.py | 24 ++++++++++++++++++++++++ 백준/9252.py | 44 ++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 145 insertions(+) create mode 100644 백준/3029.py create mode 100644 백준/3663.py create mode 100644 백준/4796.py create mode 100644 백준/9251.py create mode 100644 백준/9252.py diff --git a/백준/3029.py b/백준/3029.py new file mode 100644 index 0000000..55201ff --- /dev/null +++ b/백준/3029.py @@ -0,0 +1,38 @@ +a=input() +b=input() + +ahour=int(a[0:2]) +bhour=int(b[0:2]) + +amin=int(a[3:5]) +bmin=int(b[3:5]) + +asec=int(a[6:8]) +bsec=int(b[6:8]) + +if(bsec arr[r][c-1]: + getText(r-1,c) + else: + getText(r, c-1) + +getText(len_A, len_B) +result_reverse = [] + +for i in range(len(result)): + result_reverse.append(result.pop()) + +print(('').join(result_reverse))