import java.util.Scanner;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int total = sc.nextInt();
int cnt = sc.nextInt();
int sum = 0;
for(int i = 1; i <= cnt; i++){
int cost = sc.nextInt();
int count = sc.nextInt();
sum += cost * count;
}
if(sum == total){
System.out.println("Yes");
}else {System.out.println("No");}
}
}
먼저 주어진 수가 10보다 작다면 앞에 0을 붙여 두 자리 수로 만들고, 각 자리의 숫자를 더한다. 그 다음, 주어진 수의 가장 오른쪽 자리 수와 앞에서 구한 합의 가장 오른쪽 자리 수를 이어 붙이면 새로운 수를 만들 수 있다.
N이 주어졌을 때, N의 사이클의 길이를 구하는 프로그램을 작성하시오.
import java.util.Scanner;
public class Main{
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
sc.close();
int cycle = 0;
int copy = N;
while (true) {
N = (N % 10) * 10 + (((N / 10) + (N % 10)) % 10);
cycle++;
if (copy == N) {
break;
}
}
System.out.println(cycle);
}
}