Dev Skill 61 Divide In Grid Add Comment Edit Tutorial (Bangla) : ডায়নামিক প্রোগ্রামিং এবং রিকার্শন দিয়ে NCR কম্বিনেশন #include <bits/stdc++.h> using namespace std; long ... Read More
DCP-30: Count It Add Comment Edit #include <bits/stdc++.h> using namespace std; int main() { int i,j,k,l,n; char a[256]; cin>>n; for(i=1;i... Read More
DevSkill 23 Another Bigmod Problem Add Comment Edit Hints: Just change normal multiplication operation to efficient multiplication operation of UVA 374 Big Mod Bangla Tutorial of Big Mo... Read More
Find Next Perfect Square Code C++ Add Comment Edit Problem Link : https://devskill.com/CodingProblems/ViewProblem/473 Solution : #include <bits/stdc++.h> using namespace std; i... Read More
DevSkill DCP 154 Square Sum Difference Add Comment Edit #include <bits/stdc++.h> using namespace std; int main() { long long int n,i,j,t,ss,sn,d; cin>>t; for(i... Read More
DevSkill DCP 184 Easy Sequence Add Comment Edit #include <bits/stdc++.h> using namespace std; int main() { long long int a[100],i,j,n,k,t; cin>>t; for(j=1... Read More
DevSkill DCP 193 My Merit Position Add Comment Edit #include <bits/stdc++.h> using namespace std; struct point { string x[200]; double y; }; int main() { st... Read More
DevSkill DCP-196 Break SImulator Add Comment Edit #include <bits/stdc++.h> using namespace std; int main() { double v,u,t,a,d; long long int tc,i,j; cin>>... Read More