백준 23235번: The Fastest Sorting Algorithm In The World #Python

ColorlessDia·2025년 5월 5일

algorithm/baekjoon

목록 보기
533/807
import sys

input = sys.stdin.readline

case_number = 1

while 1:
    line = list(map(int, input().split()))

    if line[0] == 0:
        break
    
    print(f'Case {case_number}: Sorting... done!')

    case_number += 1

0개의 댓글