zoukankan      html  css  js  c++  java
  • C

    Problem description

    Anton likes to play chess, and so does his friend Danik.

    Once they have played n games in a row. For each game it's known who was the winner — Anton or Danik. None of the games ended with a tie.

    Now Anton wonders, who won more games, he or Danik? Help him determine this.

    Input

    The first line of the input contains a single integer n (1 ≤ n ≤ 100 000) — the number of games played.

    The second line contains a string s, consisting of n uppercase English letters 'A' and 'D' — the outcome of each of the games. The i-th character of the string is equal to 'A' if the Anton won the i-th game and 'D' if Danik won the i-th game.

    Output

    If Anton won more games than Danik, print "Anton" (without quotes) in the only line of the output.

    If Danik won more games than Anton, print "Danik" (without quotes) in the only line of the output.

    If Anton and Danik won the same number of games, print "Friendship" (without quotes).

    Examples

    Input

    6
    ADAAAA

    Output

    Anton

    Input

    7
    DDDAADA

    Output

    Danik

    Input

    6
    DADADA

    Output

    Friendship

    Note

    In the first sample, Anton won 6 games, while Danik — only 1. Hence, the answer is "Anton".

    In the second sample, Anton won 3 games and Danik won 4 games, so the answer is "Danik".

    In the third sample, both Anton and Danik won 3 games and the answer is "Friendship".

    解题思路:简单比较'A'和'D'出现的次数即可,水过!

    AC代码:

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 int n,t1=0,t2=0;char s[100005];
     4 int main(){
     5     cin>>n;getchar();
     6     cin>>s;
     7     for(int i=0;s[i]!='';++i){
     8         if(s[i]=='A')t1++;
     9         else t2++;
    10     }
    11     if(t1<t2)cout<<"Danik"<<endl;
    12     else if(t1>t2)cout<<"Anton"<<endl;
    13     else cout<<"Friendship"<<endl;
    14     return 0;
    15 }
  • 相关阅读:
    数据库基础——EXISTS和IN
    C#基础——加密
    C#基础——派生和继承
    SQL Server——报表服务
    SQL Server——SQL Server Profiler
    UML基础——UML简介和历史
    C#基础——密码加密
    C#(ASP.NET)错误: 无法获取属性“0”的值: 对象为 null 或未定义 关键字 'user' 附近有语法错误。
    SQL Server——存储过程
    链表的声明及操作
  • 原文地址:https://www.cnblogs.com/acgoto/p/9170559.html
Copyright © 2011-2022 走看看