http://codeforces.com/problemset/problem/734/A
Anton and Danik দুই বন্ধু , মিলে - একটা গেইম খেলছে , যেটা স্ট্রিং আকারে দেয়া আছে । ধরো দেয়া আছে ,
Anton and Danik দুই বন্ধু , মিলে - একটা গেইম খেলছে , যেটা স্ট্রিং আকারে দেয়া আছে । ধরো দেয়া আছে ,
6 ADAAAA
এর মানে , তারা মোট ৬ টা গেইম খেলেছে এবং তার মধ্যে - কে কোন গেমে জিতেছে ,সেটা ADAAAA দ্বারা প্রকাশ করা আছে , তুমি বুঝতেই পারছো যে , A বেশীবার আছে ,সুতরাং Anton বেশীবার জিতেছে
তাহলে তোমায় Anton প্রিন্ট করতে হবে । আর না হলে , যদি অপরজন বেশিরভাগ গেইম জিতে যায় , তাহলে ওর
নাম প্রিন্ট করবে , আর যদি দুইজনেই সমান পরিমাণ জিতে যায় - তাহলে Friendship প্রিন্ট করবে । আর কথা না বাড়াই , চলো --- কোড দেখে আসি ,
IN C++ LANGUAGE..........
#include <bits/stdc++.h> using namespace std; int main() { int count=0,rount=0,i,n; string joy; cin>>n; cin>>joy; for(i=0;i<n;i++) { if(joy[i]=='A') count++; else rount++; } if(count>rount) cout<<"Anton"<<endl; else if(rount>count) cout<<"Danik"<<endl; if(count==rount) cout<<"Friendship"<<endl; }
IN C# LANGUAGE..........
using System;
public class Test
{
public void print(string joy,int n)
{
int count=0,rount=0;
for(int i=0;i<n;i++)
{
if(joy[i]=='A')
count++;
else
rount++;
}
if(count>rount)
Console.WriteLine("Anton");
else if(rount>count)
Console.WriteLine("Danik");
if(count==rount)
Console.WriteLine("Friendship");
}
public static void Main()
{
int n=Convert.ToInt32(Console.ReadLine());
string joy=Console.ReadLine();
Test r=new Test();
r.print(joy,n);
}
}
YOu are so good
ReplyDeleteThank you alot