[D3] 승현이의 수학공부 - 7193
성능 요약
메모리: 132,620 KB, 시간: 492 ms, 코드길이: 597 Bytes
제출 일자
2023-11-04 01:39
출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do
import java.io.*;
import java.util.*;
class Solution {
public static void main(String args[]) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int T = Integer.parseInt(br.readLine());
for(int tc = 1; tc <= T; tc++) {
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken()) - 1;
String num = st.nextToken();
int sum = 0;
for(char ch : num.toCharArray()) sum += ch -'0';
System.out.println("#" + tc + " " + (sum % n ));
}
}
}
'알고리즘 - SWEA > D3' 카테고리의 다른 글
[SW expert Academy] SWEA 3314번 보충학습과 평균 자바(Java) (0) | 2023.11.04 |
---|---|
[SW expert Academy] SWEA 11445번 무한 사전 자바(Java) (1) | 2023.11.04 |
[SW expert Academy] SWEA 8888번 시험 자바(Java) (0) | 2023.11.04 |
[SW expert Academy] SWEA 4299번 태혁이의 사랑은 타이밍 자바(Java) (1) | 2023.11.03 |
[SW expert Academy] SWEA 7510번 상원이의 연속 합 자바(Java) (1) | 2023.11.03 |