Codeforces Round #523 (Div. 2) A. Coins

Posted heyuhhh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #523 (Div. 2) A. Coins相关的知识,希望对你有一定的参考价值。

A. Coins

题目链接https://codeforc.es/contest/1061/problem/A

题意:

给出n和s,要在1-n中选数(可重复),问最少选多少数可以使其和为s。

 

题解:

贪心就行了。

 

代码如下:

#include <cstdio>
#include <algorithm>
#include <iostream>
using namespace std;

int main(){
    int a,s;
    cin>>a>>s;
    cout<<s/a+(s%a!=0);
    return 0;
}

 

以上是关于Codeforces Round #523 (Div. 2) A. Coins的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #523 (Div. 2) A. Coins

Codeforces Round #523 (Div. 2) C Multiplicity

Codeforces Round #523 (Div. 2) C. Multiplicity

Codeforces Round #523 (Div. 2) B. Views Matter

Codeforces Round #436 E. Fire(背包dp+输出路径)

[ACM]Codeforces Round #534 (Div. 2)