Notice
Recent Posts
Recent Comments
Link
목록전체 글 (159)
할껀하고놀자
[백준] 2525번 오븐 시계
내가 푼 풀이 import sys sys.stdin = open("1.txt") h,m = map(int,input().split()) time = int(input()) if m+time>=60: hour_add = (m+time)//60 m = (m+time)%60 h = (h+hour_add)%24 else: m = m+time print(h,m) 고수의 풀이 hr, mn = tuple(map(int, input().split(" "))) mn += int(input()) hr += mn//60 mn %= 60 hr %= 24 print(hr, mn)
[IT]/백준
2019. 9. 21. 00:04
[백준] 9093 단어 뒤집기
파이썬의 문자열 라이브러리 처리는 짱인거같다. t = int(input()) for i in range(t): str = input() li = list(str.split(' ')) for j in li: print(j[::-1],end=' ') print()
[IT]/백준
2019. 9. 20. 19:11