NOJ [1078] Wizards and Demonstration

  • 问题描述
  • Some country is populated by wizards. They want to organize a demonstration.

    There are n people living in the city, x of them are the wizards who will surely go to the demonstration. Other city people (n - xpeople) do not support the wizards and aren't going to go to the demonstration. We know that the city administration will react only to the demonstration involving at least y percent of the city people. Having considered the matter, the wizards decided to create clone puppets which can substitute the city people on the demonstration.

    So all in all, the demonstration will involve only the wizards and their puppets. The city administration cannot tell the difference between a puppet and a person, so, as they calculate the percentage, the administration will consider the city to be consisting of only n people and not containing any clone puppets.

    Help the wizards and find the minimum number of clones to create to that the demonstration had no less than y percent of the city people.

  • 输入
  • The first line contains three space-separated integers, n, x, y (1 ≤ n, x, y ≤ 10^4, x ≤ n) — the number of citizens in the city, the number of wizards and the percentage the administration needs, correspondingly.

    Please note that y can exceed 100 percent, that is, the administration wants to see on a demonstration more people that actually live in the city ( > n).
  • 输出
  • Print a single integer — the answer to the problem, the minimum number of clones to create, so that the demonstration involved no less than y percent of n (the real total city population).
    Sample test(s)


    签到题,但不管题目简单还是难,我们都要仔细去对待。
    #include<stdio.h>
    #include<math.h>
    
    int main()
    {
    	int n,x,y;
    	while(~scanf("%d%d%d",&n,&x,&y))
    	{
    		int num=ceil(n*(y*1.0/100));
    		if(x>=num)
    		    printf("0\n");
    	    else
    	    	printf("%d\n", num - x );
    	}
    	return 0;
    }


你可能感兴趣的:(NOJ [1078] Wizards and Demonstration)