标签:style blog http color os io ar art
题意:给你一个无限的棋盘,里面有n×n的棋子,每个棋子可以跳过一个相邻(4个方向)棋子跳到下一个位置,并把他的相邻位(他跳过的那一位)删除。
解题思路:判断n%3 是否等于 0 , 原因未知。
解题代码:
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 }
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