728x90
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int T= sc.nextInt();
int a=0;
int b=0;
for(int tc=1;tc<=T;tc++) {
a = sc.nextInt();
b = sc.nextInt();
System.out.printf("#%d %d %d\n",tc,a/b,a%b);
}
}
}
|
cs |
buffered로 풀으니 오류남.. 나중에 해결하겠음
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
31
32
33
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Solution {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int T = Integer.parseInt(br.readLine());
int quo=0;
int rem=0;
for(int tc=1;tc<=T;tc++) {
StringTokenizer st = new StringTokenizer(br.readLine());
int[] intArr = new int[2];
for(int i=0;i<2;i++) {
intArr[i]=Integer.parseInt(st.nextToken());
}
quo=intArr[0]/intArr[1];
rem=intArr[0]%intArr[1];
sb.append("#").append(tc).append(" ").append(quo).append(" ").append("").append("\n");
}
System.out.println(sb);
}
}
|
cs |
728x90
반응형
'알고리즘 > SWEA' 카테고리의 다른 글
2025. N줄덧셈.D1 (0) | 2022.02.05 |
---|---|
2027. 대각선 출력하기.D1 (0) | 2022.02.05 |
2043. 서랍의 비밀번호. D1 (0) | 2022.02.05 |
2046. 스탬프 찍기.D1 (0) | 2022.02.05 |
2047. 신문 헤드라인.D1 (0) | 2022.02.05 |