码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #524 (Div. 2) A. Petya and Origami

时间:2018-11-25 22:15:00      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:stream   long   out   cout   nbsp   str   题目   class   strong   

A. Petya and Origami

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

题意:

给出n,k,k表示每个礼品里面sheet的数量(礼品种类可以不同),现在给n位朋友送礼,每位朋友需要2个xx,5个xx,8个xx,问最少需要买多少礼品。

 

题解:

水过~

 

代码如下:

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

typedef long long ll;
ll n,k;

int main(){
    cin>>n>>k;
    ll r = 2*n,g = 5*n,b = 8*n;
    ll ans = r/k+(r%k!=0)+g/k+(g%k!=0)+b/k+(b%k!=0);
    cout<<ans;
} 

 

Codeforces Round #524 (Div. 2) A. Petya and Origami

标签:stream   long   out   cout   nbsp   str   题目   class   strong   

原文地址:https://www.cnblogs.com/heyuhhh/p/10017374.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!