Submission #1861989


Source Code Expand

#include <iostream>
using namespace std;
int main(){
	int n,x,s=0;
	cin >>n;
	cin >>x;

	while(x!=0){
		s+=x;
		if( x>n-x)
		{
			int a=x;
			x=n-x;
			n=a;
		}
		else
		{
			x=n-x;
		}
		cout <<s;

	}
}

Submission Info

Submission Time
Task B - Mysterious Light
User Genius28
Language C++14 (GCC 5.4.1)
Score 0
Code Size 225 Byte
Status WA
Exec Time 1222 ms
Memory 131456 KB

Judge Result

Set Name Sample Subtask All
Score / Max Score 0 / 0 0 / 300 0 / 200
Status
OLE × 1
OLE × 10
WA × 9
OLE × 11
Set Name Test Cases
Sample sample-01.txt
Subtask sample-01.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt, 01-09.txt
All sample-01.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt, 01-09.txt, 02-01.txt, 02-02.txt, 02-03.txt, 02-04.txt, 02-05.txt, 02-06.txt, 02-07.txt, 02-08.txt, 02-09.txt, sample-01.txt
Case Name Status Exec Time Memory
01-01.txt OLE 1222 ms 131328 KB
01-02.txt OLE 1217 ms 131328 KB
01-03.txt OLE 1214 ms 131328 KB
01-04.txt OLE 1012 ms 131328 KB
01-05.txt OLE 1096 ms 131328 KB
01-06.txt OLE 1217 ms 131328 KB
01-07.txt OLE 1222 ms 131328 KB
01-08.txt OLE 1087 ms 131328 KB
01-09.txt OLE 1109 ms 131456 KB
02-01.txt WA 1 ms 256 KB
02-02.txt WA 1 ms 256 KB
02-03.txt WA 1 ms 256 KB
02-04.txt WA 1 ms 256 KB
02-05.txt WA 1 ms 256 KB
02-06.txt WA 1 ms 256 KB
02-07.txt WA 1 ms 256 KB
02-08.txt WA 1 ms 256 KB
02-09.txt WA 1 ms 256 KB
sample-01.txt OLE 1219 ms 131328 KB