목록1011 (1)
컴공생의 다이어리
[파이썬, Python] 백준 1011번 : Fly me to the Alpha Centauri
백준 1011번 : Fly me to the Alpha Centauri (문제 바로가기) 내 코드 import sys t=int(sys.stdin.readline()) for _ in range(t): x,y = map(int,sys.stdin.readline().split()) distance = y-x count = 1 while True: if count ** 2
Development/Algorithm & Coding Test
2021. 6. 27. 00:01