Problem https://www.acmicpc.net/problem/10869 Solution code a, b = map(int,input().split()) print(a+b, a-b, a*b, a//b, a%b,sep='\n') Memo line2에서는 각각의 계산을 따로 출력하는 대신 sep=’\n’을 활용하여 한번의 print로 처리...
Problem http://www.acmicpc.net/problem/1008 Solution a, b = map(int,input().split()) print(a/b) Memo 제출 결과는 정답 처리 되었지만, 문제의 조건인 “실제 정답과 출력값의 절대오차 또는 상대오차가 10-9 이하이면 정답이다.”가 포함된 이유는 이해하지 못하였다. 조건...
Problem https://www.acmicpc.net/problem/2839 Solution 오답코드 N = int(input()) a = N // 5 b = N % 5 if b < 3 : if b == 0 : print(a) elif b == 1 : print(a+1) else : ...
A new version of content is available.