博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2C. Fibonacci Again
阅读量:5157 次
发布时间:2019-06-13

本文共 966 字,大约阅读时间需要 3 分钟。

2C. Fibonacci Again

Time Limit: 1000ms
Case Time Limit: 1000ms
Memory Limit: 32768KB
 
64-bit integer IO format: 
%I64d      Java class name: 
Main
 
There are another kind of Fibonacci numbers: F(0) = 7, F(1) = 11, F(n) = F(n-1) + F(n-2) (n>=2).
 

Input

Input consists of a sequence of lines, each containing an integer n. (n < 1,000,000).
 

Output

Print the word "yes" if 3 divide evenly into F(n).
Print the word "no" if not.
 

Sample Input

012345
 

Sample Output

nonoyesnonono 规律是:no no yes no
1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #define LL long long10 using namespace std;11 int main(){12 int n;13 while(~scanf("%d",&n)){14 n%4 == 2 ? puts("yes"):puts("no");15 }16 return 0;17 }
View Code

 

转载于:https://www.cnblogs.com/crackpotisback/articles/3827159.html

你可能感兴趣的文章
大白话解析模拟退火算法(转载)
查看>>
虚拟机中3种常见的网络模式
查看>>
三层交换机的设置
查看>>
汇编语言:第九章 转移指令的原理
查看>>
内核的ramdisk
查看>>
Gerrit+apache+H2数据库简单安装配置及建库流程
查看>>
(第三周)团队模式中对交响乐团模式的理解
查看>>
Python2和Python3共存安装robotframework
查看>>
从源代码分析DbSet如何通过ObjectStateManager管理entity lifecycle的生命周期
查看>>
ABAP OO的八大理由(十四)
查看>>
Count Numbers with Unique Digits
查看>>
HeroM2连击技能设置和DB完整数据
查看>>
羊车门问题(Python)
查看>>
网络流题集
查看>>
让Dropdownlist既有静态项又有动态项或者既能有编辑项又能绑定数据源
查看>>
421. Maximum XOR of Two Numbers in an Array
查看>>
Spring Boot读取配置的几种方式
查看>>
冲刺NO.3
查看>>
Java Reflection(二):Classes
查看>>
移动APP测试流程
查看>>