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

A. Vasya and Chocolate

时间:2018-10-15 20:28:34      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:.com   space   include   its   mes   pac   ++   return   com   

链接

[http://codeforces.com/contest/1065/problem/A]

分析

一个公式完事

代码

#include<bits/stdc++.h>
using namespace std;
#define ll long long 

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    //freopen("in.txt","r",stdin);
    ll t,s,a,b,c;
   cin>>t;
   while(t--){
    cin>>s>>a>>b>>c;
        ll sum=0;
        sum=s/c+s/c/a*b;
        cout<<sum<<endl;
   }
    return 0;
}

A. Vasya and Chocolate

标签:.com   space   include   its   mes   pac   ++   return   com   

原文地址:https://www.cnblogs.com/mch5201314/p/9792475.html

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