QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#383676#6749. TargetTeiosama#RE 0ms4028kbC++17379b2024-04-09 16:41:392024-04-09 16:41:40

Judging History

你现在查看的是最新测评结果

  • [2024-04-09 16:41:40]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:4028kb
  • [2024-04-09 16:41:39]
  • 提交

answer

#include<bits/stdc++.h>
#include<unordered_map>
using namespace std;
int main()
{
	double a,b;
	cin>>a>>b;
	int ans[60000]={0};
	int cnt = 0;
	while(fabs(a-b)>0.0001)
	{
		if(a>b)
		{
			a*=0.5;
			ans[cnt++] = 1;
		}
			else
			{
				a = a*0.5+0.5;
				ans[cnt++] = 2;
			}
	}
	for(int i = 0;i<cnt;i++)
	{
		cout<<ans[i];
	}
	cout<<endl;
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 4028kb

input:

0.5 0.25

output:

1

result:

ok ok

Test #2:

score: 0
Accepted
time: 0ms
memory: 3900kb

input:

1 0.75

output:

12

result:

ok ok

Test #3:

score: 0
Accepted
time: 0ms
memory: 3956kb

input:

1 0

output:

11111111111111

result:

ok ok

Test #4:

score: -100
Runtime Error

input:

0.361954 0.578805

output:


result: