码迷,mamicode.com
首页 > 其他好文 > 详细

Bucharest, Romania 2013 H Red John Game 乱搞 未解

时间:2014-08-16 23:49:01      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   ar   art   

题意:给你一个无限的棋盘,里面有n×n的棋子,每个棋子可以跳过一个相邻(4个方向)棋子跳到下一个位置,并把他的相邻位(他跳过的那一位)删除。

解题思路:判断n%3 是否等于 0 , 原因未知。

解题代码:

bubuko.com,布布扣
 1 #include<stdio.h>
 2 int main(){
 3    int  n ; 
 4    while(~scanf("%d",&n))
 5    {
 6       if(n%3)
 7           printf("1\n");
 8       else printf("0\n");
 9    }
10    return 0 ; 
11 }
View Code

 

Bucharest, Romania 2013 H Red John Game 乱搞 未解,布布扣,bubuko.com

Bucharest, Romania 2013 H Red John Game 乱搞 未解

标签:style   blog   http   color   os   io   ar   art   

原文地址:http://www.cnblogs.com/zyue/p/3917091.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!