Codeforces 258A Game With Sticks

Posted evenbao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 258A Game With Sticks相关的知识,希望对你有一定的参考价值。

【题目链接】

            http://codeforces.com/contest/451/problem/A

【算法】

            若n和m中的最小值是奇数,则先手胜,否则后手胜

【代码】

           

#include<bits/stdc++.h>
using namespace std;

int n,m;

int main() 
{
        
        scanf("%d%d",&n,&m);
        if (min(n,m) % 2 == 0) printf("Malvika
");
        else printf("Akshat
");
        
        return 0;
    
}

 

以上是关于Codeforces 258A Game With Sticks的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces451A-Game With Sticks-思维

Codeforces Round #643 (Div. 2) D. Game With Array(构造)

Codeforces Round #643 (Div. 2) D. Game With Array(构造)

codeforces 850C Arpa and a game with Mojtaba

Codeforces 354B dp Game with Strings dp

[Codeforces 919F]A Game With Numbers