21541_BasketsofGoldCoins

2022-5-16 18:19| 发布者: Hocassian| 查看: 30| 评论: 0|原作者: 肇庆学院ACM合集

摘要:
C:\Users\Administrator\Downloads\2019-10-12-10-14-4-89505408087199-Problem List-采集的数据-后羿采集器.html

Pro.ID

21541

Title

Baskets of Gold Coins

Title链接

http://10.20.2.8/oj/exercise/problem?problem_id=21541

AC

2

Submit

4

Ratio

50.00%

时间&空间限制

  • Time Limit: 1000/500 MS (Java/Others)     Memory Limit: 65536/32768 K (Java/Others)
  • 描述

    You are given N baskets of gold coins. The baskets are numbered from 1 to N. In all except one of the baskets, each gold coin weighs w grams. In the one exceptional basket, each gold coin weighs w-d grams. A wizard appears on the scene and takes 1 coin from Basket 1, 2 coins from Basket 2, and so on, up to and including N-1 coins from Basket N-1. He does not take any coins from Basket N. He weighs the selected coins and concludes which of the N baskets contains the lighter coins. Your mission is to emulate the wizard's computation.

    输入

    The input file will consist of one or more lines; each line will contain data for one instance of the problem. More specifically, each line will contain four positive integers, separated by one blank space. The first three integers are, respectively, the numbers N, w, and d, as described above. The fourth integer is the result of weighing the selected coins.

    N will be at least 2 and not more than 8000. The value of w will be at most 30. The value of d will be less than w.

    输出

    Description

    You are given N baskets of gold coins. The baskets are numbered from 1 to N. In all except one of the baskets, each gold coin weighs w grams. In the one exceptional basket, each gold coin weighs w-d grams. A wizard appears on the scene and takes 1 coin from Basket 1, 2 coins from Basket 2, and so on, up to and including N-1 coins from Basket N-1. He does not take any coins from Basket N. He weighs the selected coins and concludes which of the N baskets contains the lighter coins. Your mission is to emulate the wizard's computation.

    Input

    The input file will consist of one or more lines; each line will contain data for one instance of the problem. More specifically, each line will contain four positive integers, separated by one blank space. The first three integers are, respectively, the numbers N, w, and d, as described above. The fourth integer is the result of weighing the selected coins.

    N will be at least 2 and not more than 8000. The value of w will be at most 30. The value of d will be less than w.

    Output

    For each instance of the problem, your program will produce one line of output, consisting of one positive integer: the number of the basket that contains lighter coins than the other baskets.

    Sample Input

    10 25 8 1109
    10 25 8 1045
    8000 30 12 959879400

    Sample Output

    2
    10
    50

    Source

    样例输入

    10 25 8 1109
    10 25 8 1045
    8000 30 12 959879400

    样例输出

    2
    10
    50

    作者


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部