728x90
반응형
JUNGOL 정보올림피아드&알고리즘에서 학습용으로 문제를 가져왔습니다. 문제가 될 시 수정, 삭제하겠습니다.
761
a=input().split(" ")
print(a[1],a[0]+a[1])
762
a=input().split(" ")
b=input().split(" ")
print("%s age + %s age = %d"%(a[0],b[0],int(a[1])+int(b[1])))
763
a=input()
b=input()
print(a.rstrip()+" "+b.rstrip())
764
a=input().split(" ")
b=input().split(" ")
c=input().split(" ")
print("%s sounds %s."%(a[0],a[1]))
print("%s sounds %s."%(b[0],b[1]))
print("%s sounds %s."%(c[0],c[1]))
993
a=input()
b=input()
c=float(input())
print("I am %s(IdNo. %s). I got %f in my midterm exam."%(a,b,c))
879
print(""" item count price rate
pen 20 100 50.5
note 5 95 35.3
eraser 110 97 14.2""")
767
a=input().split(" ")
print((int(a[0])+int(a[1]))*(int(a[2]))/2)
768
a=input()
b=input()
c=input()
d=input()
print("%s: %s"%(a,b))
print("%s: %s"%(c,d))
769 Wrong Answer(0)
반응형
'Programming > JUNGOL : 정보올림피아드&알고리즘' 카테고리의 다른 글
[JUNGOL LCoder_Python 선택제어문]:801~814 (0) | 2022.01.26 |
---|---|
[JUNGOL LCoder_Python 리스트1]:781~795 (0) | 2022.01.26 |
[JUNGOL LCoder_Python 연산자]:740~756 (2) | 2022.01.26 |
[JUNGOL LCoder_Python 변수와 입력]:720~732 (1) | 2022.01.26 |
[JUNGOL LCoder_Python 출력]:700~710 (0) | 2022.01.26 |