标签:
分析:很容易知道序列1,2,3, 4,5, 6......与3的关系就是1,2, 0,1, 2,0,......如果是在一个数后面添加一个数就变成了这种序列1, 0, 0, 1, 0, 0, 1, 0, 0.。。。
代码如下:
=======================================================================================
#include<stdio.h> #include<string.h> #include<algorithm> using namespace std; const int MAXN = 107; const int oo = 1e9+7; int main() { int N; scanf("%d", &N); printf("%d\n", N/3*2 + (N%3 == 2?1:0)); return 0; }
标签:
原文地址:http://www.cnblogs.com/liuxin13/p/4806560.html