• e-olymp Problem4196 Chocolate bars


    吐槽一下,这个OJ的题目真的是阅读理解题。代码非常短,就是题目难理解。心累。

    传送门:点我

    Chocolate bars

    It is hard to overestimate the role of chocolate bars in traditional programming competitions. Firstly, the nutritional content of chocolate significantly increases the number of brilliant ideas among the participants of the Olympiad. Geometric shape of the tiles is usually a rectangle of size a × b of square pieces 1 × 1, which in turn recalls the model of many problems.

    Given the size of one chocolate bar a × b and the number of Olympiad participants n. The jury members want to determine the number of enough chocolate bars, so that breaking the bars into single pieces, it will be possible to divide them equally among all n participants. That is, each participants can receive equal number of square tiles 1 × 1.

    Input

    Positive integers abn. All numbers do not exceed 100.

    Output

    Print the enough number of chocolate bars.

    Time limit 1 second
    Memory limit 128 MiB
    Input example #1
    3 5 6
    
    Output example #1
    2

    题意:输入的是a,b,n,巧克力大小为a*b,可以分成1*1的,要求给n个人分,每个人都要一样多。
       样例是,3*5*2,这样就能分成30个1*1,能给6个人均分。而15个1*1则不行。
    思路:非常非常没意思的题,直接暴力枚举(a*b*i)%n 是否等于0就行,i每次加一。还是读题不太好玩。
    代码:
    #include <cstdio>
    #include <iostream>  
    using namespace std; 
    int main()
    {
        int a,b,n,k = 1;
        cin>>a>>b>>n;
        int ans = a*b,sum = a*b;
        while(ans%n){
            k++;
            ans+=sum;
        }
        printf("%d
    ",k);
    }
  • 相关阅读:
    WPF 附件路由事件
    WPF 中的 路由事件
    WPF 中的DataTemplate 的嵌套
    wpf 的style
    C# 中的反射机制
    如何在github上fork以及同步原作者代码
    c# 执行python方法
    转载:c# 获取CPU温度(非WMI,直接读取硬件)
    C# 多个线程一直跑着While(true)
    C# TextBox控件 显示大量数据
  • 原文地址:https://www.cnblogs.com/Esquecer/p/9056655.html
Copyright © 2020-2023  润新知