Submission #2646022
Source Code Expand
#include<cstdio>
int main(void)
{
int a,b;
scanf("%d%d",&a,&b);
int total = 0,i;
for(int i = 1; i <= 999; i++) {
total+=i;
if(total-i-a == total-b) {
printf("%d",total-b);
return 0;
}
}
}
Submission Info
| Submission Time | |
|---|---|
| Task | B - Stone Monument |
| User | libingzhen |
| Language | C++14 (GCC 5.4.1) |
| Score | 200 |
| Code Size | 217 Byte |
| Status | AC |
| Exec Time | 1 ms |
| Memory | 128 KiB |
Compile Error
./Main.cpp: In function ‘int main()’:
./Main.cpp:5:21: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d",&a,&b);
^
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 200 / 200 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | sample_01.txt, sample_02.txt |
| All | 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, sample_01.txt, sample_02.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 01.txt | AC | 0 ms | 128 KiB |
| 02.txt | AC | 0 ms | 128 KiB |
| 03.txt | AC | 1 ms | 128 KiB |
| 04.txt | AC | 0 ms | 128 KiB |
| 05.txt | AC | 0 ms | 128 KiB |
| 06.txt | AC | 0 ms | 128 KiB |
| 07.txt | AC | 0 ms | 128 KiB |
| 08.txt | AC | 0 ms | 128 KiB |
| 09.txt | AC | 0 ms | 128 KiB |
| 10.txt | AC | 0 ms | 128 KiB |
| sample_01.txt | AC | 0 ms | 128 KiB |
| sample_02.txt | AC | 1 ms | 128 KiB |