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 }
  • 相关阅读:
    第二阶段第九天站立会议总结
    第二阶段第八天站立会议总结
    第二阶段第七天站立会议总结
    第二阶段第六天站立会议总结
    第二阶段第五天站立会议总结
    第二阶段第四天站立会议总结
    第二阶段第三天站立会议总结
    第二阶段第二天站立会议总结
    7nm FinFET 版图的特点
    [ Skill ] 键位不够用之 Menu
  • 原文地址:https://www.cnblogs.com/acgoto/p/9170559.html
Copyright © 2011-2022 走看看