# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
3682 | waps12b | Great Pow! (kriii1_G) | 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<cstdio>
int main() {
int a, k;
scanf("%d %d", &a, &k);
int b = a+1;
bool chk = 0;
if( k == 0 ) {
printf("%d\n", a);
return 0;
}
if(b%2==0) { //홀수다
printf("%d\n", a);
}
else printf("%d\n", 1);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |