-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDownload file.cpp
71 lines (57 loc) · 1.03 KB
/
Download file.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
***** !!!!! JAI SHREE KRISHNA !!!!! *****
Date - 16th March 2023
Code by - Abhinav Anand
Problem link -> https://www.codechef.com/problems/DWNLD
*/
#include <iostream>
#include <algorithm>
#include <bits/stdc++.h>
#define ll long long int
#define endl "\n"
using namespace std;
bool isprime(int n)
{
for(int i=2;i<=sqrt(n);i++)
{
if(n%i==0)
return false;
}
return true;
}
void solve()
{
int n,k,amt=0,cnt=0;
cin>>n>>k;
int amt2=0;
while(n--)
{
int t,d;
cin>>t>>d;
if(k>0)
{
if(k>t)
{
k=k-t;
amt2=amt2+(t*d);
}
else if(k<=t)
{
k=t-k;
amt2=amt2+(abs(k-t)*d);
k=0;
}
}
amt=(t*d)+amt;
}
cout << amt -amt2 << endl;
}
int main() {
ll t;
cin>>t;
while(t--)
{
solve();
}
return 0;
}