Uknow's Lab.
article thumbnail

https://www.acmicpc.net/problem/23235

 

23235번: The Fastest Sorting Algorithm In The World

It is common to compare sorting algorithms based on their asymptotic speeds. Some slower algorithms like selection sort take O(N2) time to sort N items, while comparison-based sorts like merge sort can go no faster than O(N log(N)) time, under reasonable a

www.acmicpc.net

 

난이도 : 브론즈 5
태그 : 구현

 

 

설명

제목을 보고 꽤 재밌을 것 같아서 들어간 문제였습니다.

으음,,, 사실 sorting과는 별 상관 없이

각 케이스 idx에 따라 문자열을 출력하는 문제입니다.

 

 

소스코드

fun main() {
    var idx = 1

    while (true) {
        if (readln() == "0") break
        println("Case ${idx++}: Sorting... done!")
    }
}

 

 

후기

다른 의미로 꽤 재밌던 문제였습니다,,,

profile

Uknow's Lab.

@유노 Uknow

인생은 Byte와 Double 사이 Char다. 아무말이나 해봤습니다.