#include <cstdio> int main() { int X, Y; while (scanf("%d %d", &X, &Y) != EOF) { int d = Y - X; int lap = Y / d; if (Y % d) lap++; printf("%d\n", lap); } return 0; }
আমার ব্লগে আপনাকে স্বাগতম...... আমি সুভাশিষ মল্লিক... পড়াশোনা করছি কুষ্টিয়ার ইসলামী বিশ্ববিদ্যালয়ের কম্পিউটার সায়েন্স এন্ড ইঞ্জিনিয়ারিং বিভাগে... প্রোগ্রামিং করতে অনেক ভালো লাগে আর তার চেয়েও বেশি ভালো লাগে প্রোগ্রামিং এর যেকোনো কাজে কাওকে সাহায্য করতে,আর সেই জন্যই আমার এই ব্লগ... আপনার জন্যই আমার এই ব্লগ... নিজে প্রোগ্রামিং করুন ও অন্যকে প্রোগ্রামিং করতে উৎসাহ প্রদান করুন.... Happy Coding
রবিবার, ২৭ জানুয়ারী, ২০১৯
UVA 12791 - Lap
এতে সদস্যতা:
পোস্টগুলি (Atom)
Factory Pattern
Factory Method is a creational design pattern that provides an interface for creating objects in a superclass but allows subclasses to alte...
-
In the first example the maximum product is achieved for 389 389 (the product of digits is 3 ⋅ 8 ⋅ 9 = 216 3 ⋅ 8 ⋅ 9 = 216 ). In the s...
-
#include<bits/stdc++.h> using namespace std; int main() { int ts; cin>>ts; getchar(); while(ts--) {...
-
INPUT: 1 5 1 4 2 6 8 10 3 4 7 10 OUTPUT: Case 1: 4 For each case, print the case number and the number of post...