标签:
#include <stdio.h> int newcoder(int n) { if (n==0) { return 7; }else if(n==1) { return 11; } else return newcoder(n-1)+newcoder(n-2); } int main() { int a; while(scanf("%d",&a)!=EOF) { if(newcoder(a)%3==0) printf("YES\n"); else printf("NO\n"); } return 0; }
大神解法
#include<stdio.h> int res[]={1,2,0,2,2,1,0,1}; int main(){ int t; while(~scanf("%d",&t)){ if(res[t%8]) printf("No\n"); else printf("Yes\n"); } return 0; }
标签:
原文地址:http://www.cnblogs.com/zhuyaguang/p/4643979.html