সোমবার, ৬ ফেব্রুয়ারী, ২০১৭

UVA 11900 - Boiled Eggs

#include <stdio.h>
#include<bits/stdc++.h>
using namespace std;
int main()
{
    long ts,cs=1;
    cin>>ts;
    while(ts--)
        {
            long n,p,q,i,ar[100]={0};
            cin>>n>>p>>q;
            for(i=1;i<=n;i++)
            {
                cin>>ar[i];
            }
            long sum=0,cnt=0;
            for(i=1;i<=n;i++)
            {
                sum+=ar[i];
                if(sum>q||cnt>=p)
                {
                    break;
                }
                cnt++;
            }
            printf("Case %ld: %ld\n",cs++,cnt);
        }
 }

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন

Factory Pattern

Factory Method  is a creational design pattern that provides an interface for creating objects in a superclass but allows subclasses to alte...