라이브러리/JAVA
2^N
kimximya
2024. 6. 21. 18:06
static int f (int N)
{
return 1 << N;
}
static int f (int N)
{
return 1 << N;
}