반응형
https://www.acmicpc.net/problem/10250
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.StringTokenizer;
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());
for(int i=0;i<N;i++) {
String a=br.readLine();
StringTokenizer st = new StringTokenizer(a," ");
int H=Integer.parseInt(st.nextToken());
st.nextToken();
int P=Integer.parseInt(st.nextToken());
if(P%H==0)
System.out.println(100*H+(P/H));
else
System.out.println(100*(P%H)+(P/H)+1);
}
}
}
728x90
반응형
'코딩테스트 > 백준' 카테고리의 다른 글
백준 1065 : 한수 자바 Java (0) | 2023.01.02 |
---|---|
백준 10814 자바 : 나이순 정렬 (0) | 2023.01.02 |
백준 2750 java 자바 (0) | 2022.08.06 |
백준 10809 java 자바 (0) | 2022.08.06 |
백준 2581 java 자바 (0) | 2022.08.04 |
댓글