简单博弈!!HDU 1847

简单博弈!!HDU 1847
http://acm.hdu.edu.cn/showproblem.php?pid=1847

该题属于简单博弈题,只要将结果化到最简就可以推出规律!!

#include<stdio.h>
int main()
{
    long n;
    while(scanf("%d",&n)==1) {
        if(n%3==0)printf("Cici\n");
        else printf("Kiki\n");
    }
}

O(∩_∩)O~

你可能感兴趣的:(简单博弈!!HDU 1847)