Updated:

1. 문제 링크

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

2. 사용 알고리즘

구현

3. 풀이

문자를 아스키 코드를 이용하여 정수로 변경 후 합 계산

4. 소스 코드

4-1. C++

https://github.com/dev-aiden/problem-solving/blob/main/boj/11720.cpp

1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>

using namespace std;

int main(void) {
    ios_base::sync_with_stdio(false);
    int n, sum = 0; for (cin >> n; n--;) {
        char c; cin >> c;
        sum += c - 48;
    }
    cout << sum << '\n';
    return 0;
}

4-2. JAVA

https://github.com/dev-aiden/problem-solving/blob/main/boj/11720.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        String s = br.readLine();
        int sum = 0;
        for(int i = 0; i < n; ++i) sum += s.charAt(i) - 48;
        System.out.println(sum);
    }
}

Updated:

Leave a comment