We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
한글이 포함된 파이썬3 코드를 제출시 채점 중 유니코드에러 가 발생합니다.
The text was updated successfully, but these errors were encountered:
정확한 상황을 적어주세요. 제출한 코드라던지 문제라던지
Sorry, something went wrong.
http://litmus.ga/problem/albamon
least=int(input()) my_money, my_work = input().split() my_money = int(my_money) my_work = int(my_work) if my_money < least: print("최저시급도 못 받고 있네요.") else: print(my_money*my_work)
input2.txt:
6470 6000 10
expect:
최저시급도 못 받고 있네요.
actual result is IR, WA (UnicodeEncodeError)
IR, WA (UnicodeEncodeError)
가상환경에서는 정상적으로 출력되는 걸로 보아, judge에서 인코딩 에러가 난 것 같음
No branches or pull requests
한글이 포함된 파이썬3 코드를 제출시 채점 중 유니코드에러 가 발생합니다.
The text was updated successfully, but these errors were encountered: