제출 #1328793

#제출 시각아이디문제언어결과실행 시간메모리
1328793model_codeMatcha (COCI26_matcha)Pypy 3
100 / 100
155 ms48748 KiB
n = int(input())
for i in range(n):
    x, y, z = map(int, input().split())
    if y == -1 and z == -1:
        print("Masa", x)
    if y == -1 and z != -1:
        print("Ivor", x + z)
    if y != -1 and z == -1:
        print("Lana", x + y)
    if y != -1 and z != -1:
        print("Ivor", x + y + z)

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

Compiling 'Main.py'...

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

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