제출 #1122426

#제출 시각아이디문제언어결과실행 시간메모리
1122426newscanf 함수 5 (BSC_0_7)Pypy 3
100 / 100
151 ms38620 KiB
# Correct implementation
a, b = map(int, input().split())
average = (a + b) / 2
if average.is_integer():
    print(int(average))
else:
    print(average)

컴파일 시 표준 출력 (stdout) 메시지

Compiling 'scanf5.py'...

=======
  adding: __main__.pyc (deflated 18%)

=======
#Verdict Execution timeMemoryGrader output
Fetching results...