thafnhlong / hackerrank-storage

0 stars 0 forks source link

https://www.hackerrank.com/challenges/halloween-party #45

Open thafnhlong opened 2 years ago

thafnhlong commented 2 years ago

A+B = C Tìm A và B sao cho max(A*B); để đạt được thì A phải bằng B.

A*A = A^2
(A+1)(A-1) = A^2 - 1

=> A = B = C/2

long halloweenParty(int k) {
    return ((long)k/2)*(k-k/2);
}