Notice
Recent Posts
Recent Comments
Link
ยซ   2025/04   ยป
์ผ ์›” ํ™” ์ˆ˜ ๋ชฉ ๊ธˆ ํ† 
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Tags
more
Archives
Today
Total
๊ด€๋ฆฌ ๋ฉ”๋‰ด

๐ŸŒฑ dreaming DiNO

[ํ”„๋กœ๊ทธ๋ž˜๋จธ์Šค] ์ง์ˆ˜์˜ ํ•ฉ (Kotlin) ๋ณธ๋ฌธ

์•Œ๊ณ ๋ฆฌ์ฆ˜

[ํ”„๋กœ๊ทธ๋ž˜๋จธ์Šค] ์ง์ˆ˜์˜ ํ•ฉ (Kotlin)

MK_____ 2023. 11. 22. 22:52

 

class Solution {
    fun solution(n: Int): Int {
        var answer: Int = 0
        
        var mok = 0
        
        if (n%2 == 0) {
            mok = n/2
        } else {
            mok = (n-1)/2
        }
        
        for (i in 1 .. mok) {
           answer += 2 * i
        }
        
        return answer
    }
}

 

 

1) ๋‚˜๋จธ์ง€ ์—ฐ์‚ฐ์ž % ๋ฅผ ์ด์šฉํ•ด์„œ ํ™€์ˆ˜, ์ง์ˆ˜ ๋ถ„๊ธฐ ํ•˜์˜€๊ณ 

2) for๋ฌธ ์ด์šฉํ•˜์—ฌ ๋ชซ๊นŒ์ง€ ๋”ํ•ด์ฃผ๋„๋ก ํ•˜์˜€๋‹ค