ACM_Notebook_new

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub ngthanhtrung23/ACM_Notebook_new

:warning: Math/Pure/fibo.h

Code

// Proof : http://www.fq.math.ca/Scanned/10-4/advanced10-4.pdf
bool isSquare(long long n) { /* */}
bool isFibonacci(int n) {
    return n >= 0 && isSquare(5*n*n+4) || isSquare(5*n*n-4);
}
#line 1 "Math/Pure/fibo.h"
// Proof : http://www.fq.math.ca/Scanned/10-4/advanced10-4.pdf
bool isSquare(long long n) { /* */}
bool isFibonacci(int n) {
    return n >= 0 && isSquare(5*n*n+4) || isSquare(5*n*n-4);
}
Back to top page