https://www.acmicpc.net/problem/10162
import java.util.Scanner;
public class feb07two {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner s=new Scanner(System.in);
int time=s.nextInt();
s.close();
int arr[]=new int[] {300,60,10};
int count[]=new int[3];
for(int i=0;i<3;i++) {
count[i]=time/arr[i];
time%=arr[i];
}
if(time!=0) {
System.out.print(-1);
}else {
System.out.print(count[0]+" "+count[1]+" "+count[2]);
}
}
}
'JAVA > 백준' 카테고리의 다른 글
[백준/자바] 2720번 세탁소 사장 동혁 (0) | 2022.02.08 |
---|---|
[백준/자바] 11047번 동전 0 (0) | 2022.02.07 |
[백준/자바] 5585번 거스름돈 (0) | 2022.02.07 |
[백준/자바] 9625번 BABBA (0) | 2022.02.06 |
[백준/자바] 15312번 이름궁합 (0) | 2022.02.05 |
댓글