-
[백준 1924][Swift] 2007년알고리즘 2022. 4. 1. 10:57728x90
코드
let input = readLine()?.split(separator: " ") let array = ["SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"] let month = Int(input?.first ?? "0")! var day = Int(input?.last ?? "0")! for i in 1..<month { switch i { case 1, 3, 5, 7, 8, 10, 12: day += 31 case 4, 6, 9, 11: day += 30 case 2: day += 28 default: break } } print(array[day % 7])
https://www.acmicpc.net/problem/1924
'알고리즘' 카테고리의 다른 글
[백준 10818][Swift] 최소, 최대 (0) 2022.04.01 [백준 8393][Swift] 합 (0) 2022.04.01 [백준 2739][Swift] 구구단 (0) 2022.04.01 [백준 2741][Swift] 기찍 N (0) 2022.03.31 [백준 2741][Swift] N 찍기 (0) 2022.03.31