정화 코딩

EDOC 2023-W 1회차 정모 본문

Group/EDOC

EDOC 2023-W 1회차 정모

jungh150c 2024. 1. 9. 23:07

A. 인공지능 시계 (백준 2530번)

 

https://www.acmicpc.net/problem/2530

 

#python

from sys import stdin

h, m, s = map(int, stdin.readline().split())
time = int(stdin.readline())

s += time

if s >= 60:
    m += s // 60
    s = s % 60

if m >= 60:
    h += m // 60
    m = m % 60

if h >= 24:
    h = h % 24

print(h, m, s)

(정답)

 


 

B. 열 개씩 끊어 출력하기 (백준 11721번)

 

https://www.acmicpc.net/problem/11721

 

#python

from sys import stdin

word = stdin.readline()
cnt = 0

for x in word:
    print(x, end="")
    cnt += 1
    if cnt >= 10:
        cnt = 0
        print()

(정답)

 

'Group > EDOC' 카테고리의 다른 글

EDOC 2023-W 1회차 과제 (그래프의 표현)  (2) 2024.01.11
EDOC 2023-W 1회차 정모 기록  (0) 2024.01.09
EDOC 2023-2 8주차 과제  (3) 2023.12.04
EDOC 2023-2 7주차 과제  (1) 2023.11.27
EDOC 2023-2 7회차 정모  (1) 2023.11.27
Comments