2021.发工资咯:)

Posted huoyuying

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2021.发工资咯:)相关的知识,希望对你有一定的参考价值。

#include<cstdio>

#include<iostream>

using namespace std;

int main(){

         int n;

         while(scanf("%d",&n),n){

                   int d,ans=0;

                   for(int i=0;i<n;i++){

                            scanf("%d",&d);

                            ans+=d/100;d%=100;

                            ans+=d/50;d%=50;

                            ans+=d/10;d%=10;

                            ans+=d/5;d%=5;

                            ans+=d/2;d%=2;

                            ans+=d;

                   }

                   printf("%d ",ans);

         }

         return 0;

}

以上是关于2021.发工资咯:)的主要内容,如果未能解决你的问题,请参考以下文章

(简单贪心) 发工资咯:) hdu2021

HDU2021 发工资咯:)整数计算

HDU2021 发工资咯:)整数计算

HDU 2021 发工资咯:)

2021.发工资咯:)

ACM_发工资(简单贪心)