摘要: Problem DescriptionRecall the definition of the Fibonacci numbers: f1 := 1 f2 := 2 fn := fn-1 + fn-2 (n >= 3)Given two numbers a and b... 阅读全文
posted @ 2018-01-26 17:27 Assassin_poi君 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 给出N个整数,你来判断一下是否能够选出4个数,他们的和为0,可以则输出"Yes",否则输出"No"。 Input第1行,1个数N,N为数组的长度(4 #include #include #include using namespace std;int board[1... 阅读全文
posted @ 2018-01-26 15:02 Assassin_poi君 阅读(135) 评论(0) 推荐(0) 编辑