time limit: 1 sec
memory limit: 128 mb
submit: 64
solved: 18 [
submit][
status][
web board]
there are another kind of fibonacci numbers: f(0) = 7, f(1) = 11, f(n) = f(n-1) + f(n-2) (n>=2).
input consists of a sequence of lines, each containing an integer n. (n < 1,000,000).
print the word "yes" if 3 divide evenly into f(n). print the word "no" if not.
012345
nonoyes
nono
no
這題目要是用常規演算法遞迴計算的話,在比賽中會超時,提交不了,所以還要靠數學思維,得看出規律!
0 7 %3 1 也就是這樣的規律,在數學上交求模公式!
1 11 2
2 18 0
3 29 2
4 47 2
5 76 1
#include int main()else
//就是求模公式!
if(sum==0)
printf("yes\n");
else
printf("no\n");
} }}
F 入門 第二章 F 基礎 第二節 注釋
f 語言有兩種注釋方法。行注釋為只有一行的注釋。塊注釋是從 到 之間的注釋。行注釋 行注釋。只注釋這1行 print endline hello world 塊注釋1 塊注釋。這裡也是注釋。print endline hello world print endline函式的使用方法在後文詳述。一般情...
彙編 第二節
第二節 cpu主要有有運算器,控制器,暫存器,三部分組成 8086 cpu有14個暫存器,如ax,bx,cx,dx,si。8086所有暫存器都是16位的,可以存放2個byte即位元組,16位二進位制數 所能存放的最大數值是 11111111111 2 16 1 從0開始,所以 1嘛 通用暫存器為4個...
函式第二節
coding utf 8 1.定義乙個方法get num num num引數是列表型別,判斷列表裡面的元素為數字型別。其他型別則報錯,並且返回乙個偶數列表 注 列表裡面的元素為偶數 def get num l l for i in l 判斷列表l的元素是否都為整形 if not isinstance...