# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
9476 | jwvg0425 | Wiring (kriii2_W) | C++98 | 0 ms | 1088 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<stdio.h>
int main(void)
{
long long int N;
scanf("%lld", &N);
if (N % 2 == 0)
{
printf("%lld", N - 1);
}
else
{
printf("%lld", (N - 3) / 2 + 1);
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |