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 }
  • 相关阅读:
    java类加载器与双亲委派机制详解
    JAVA数据库连接池
    使用vue脚手架(vue-cli)快速搭建项目
    安装Vue.js
    @Autowired的使用:推荐对构造函数进行注释
    图解排序算法(三)之堆排序
    快速排序思想
    TCP与UDP区别总结
    JDBC
    solr单机版安装与集群搭建教程
  • 原文地址:https://www.cnblogs.com/acgoto/p/9170559.html
Copyright © 2011-2022 走看看