Submission #20155377
Source Code Expand
#include <bits/stdc++.h>
using namespace std;
int main(){
long long int b,c;
cin >> b >> c;
if(b==0){
cout << c;
}
else if(c==1){
cout << 2;
}
else{
if(c>=2*b){
if(c%2==1){
cout << (abs(b)+(c-1)/2)*2;
}
else{
if(b<0){
cout << (abs(b)+c/2)*2;
}
else{
cout << (abs(b)+c/2)*2-1;
}
}
}
else{
if(b<0){
cout << c*2;
}
else{
cout << c*2-1;
}
}
}
return 0;
}
Submission Info
| Submission Time | |
|---|---|
| Task | B - -- - B |
| User | hocashi |
| Language | C++ (GCC 9.2.1) |
| Score | 400 |
| Code Size | 446 Byte |
| Status | AC |
| Exec Time | 6 ms |
| Memory | 3608 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 400 / 400 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | sample.txt, sample_2.txt, sample_3.txt, sample_4.txt |
| All | 0_1.txt, 0_1000000000000000000.txt, 1000000000000000000_1.txt, 1000000000000000000_1000000000000000000.txt, 1312150450968415_354979173822804784.txt, 252509054433933443_74859962623690081.txt, 335408917861648769_779547116602436426.txt, 489647926824927166_979295853649854331.txt, 489647926824927166_979295853649854332.txt, 489647926824927166_979295853649854333.txt, 522842184971407772_585335723211047202.txt, 645762258982631929_269587449430302156.txt, 84324828731963978_148049062628894325.txt, 891351282707723854_349993004923078537.txt, sample.txt, sample_2.txt, sample_3.txt, sample_4.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 0_1.txt | AC | 6 ms | 3408 KiB |
| 0_1000000000000000000.txt | AC | 2 ms | 3552 KiB |
| 1000000000000000000_1.txt | AC | 2 ms | 3608 KiB |
| 1000000000000000000_1000000000000000000.txt | AC | 2 ms | 3480 KiB |
| 1312150450968415_354979173822804784.txt | AC | 3 ms | 3360 KiB |
| 252509054433933443_74859962623690081.txt | AC | 2 ms | 3360 KiB |
| 335408917861648769_779547116602436426.txt | AC | 2 ms | 3404 KiB |
| 489647926824927166_979295853649854331.txt | AC | 2 ms | 3572 KiB |
| 489647926824927166_979295853649854332.txt | AC | 3 ms | 3584 KiB |
| 489647926824927166_979295853649854333.txt | AC | 2 ms | 3420 KiB |
| 522842184971407772_585335723211047202.txt | AC | 2 ms | 3428 KiB |
| 645762258982631929_269587449430302156.txt | AC | 3 ms | 3408 KiB |
| 84324828731963978_148049062628894325.txt | AC | 3 ms | 3488 KiB |
| 891351282707723854_349993004923078537.txt | AC | 2 ms | 3552 KiB |
| sample.txt | AC | 2 ms | 3572 KiB |
| sample_2.txt | AC | 2 ms | 3552 KiB |
| sample_3.txt | AC | 3 ms | 3576 KiB |
| sample_4.txt | AC | 2 ms | 3580 KiB |