Codeforces 451 A . Game With Sticks

简介:

题目链接:http://codeforces.com/contest/451/problem/A

#include <iostream>
#include <cstdio>
using namespace std;

int main()
{
    int m,n;
    cin>>m>>n;
    if(m==1 || n==1)
        puts("Akshat");
    else
    {
        int cnt=0;
        while(1)
        {
            if(m==1 || n==1)
               break;
            m--;
            n--;
            cnt++;
        }
        if(cnt%2 == 0)
            puts("Akshat");
        else
            puts("Malvika");
    }
    return 0;
}
目录
相关文章
|
8月前
Knight Moves(POJ2243)
Knight Moves(POJ2243)
|
机器学习/深度学习 Java
codeforces Educational Codeforces Round 49 (Rated for Div. 2) C题
刚开始拿到这题很懵逼,知道了别人的思路之后开始写,但是还是遇到很多坑,要求求P2/S最大。p=a b。就是求(a2+ b2 +2ab)/ab最大,也就是a/b +b/a最大。那么题意就很明显了。
121 0
|
开发者
牛客第六场-Combination of Physics and Maths
题意:选出一个子矩阵,使得所求的压强最大,压强是指这个子矩阵中每个元素之和 / 这个子矩阵最下面一行的元素之和
66 0
牛客第六场-Combination of Physics and Maths
|
人工智能
Educational Codeforces Round 33
A. Chess For Three time limit per test1 second memory limit per test256 megabytes inputstanda...
1173 0
|
人工智能
Educational Codeforces Round 31 A B C
A. Book Reading time limit per test2 seconds memory limit per test256 megabytes inputstandard...
1114 0