QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#48533#4003. Rounding Master13889577060#AC ✓2ms3880kbC++754b2022-09-14 14:49:252022-09-14 14:49:29

Judging History

This is the latest submission verdict.

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-09-14 14:49:29]
  • Judged
  • Verdict: AC
  • Time: 2ms
  • Memory: 3880kb
  • [2022-09-14 14:49:25]
  • Submitted

answer

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define mid (l + r) / 2
int k, cnt;
long double n, ans, eps = 0.000000001;
inline int check(long double x){
	long double ans = 1;
	for(int i = 1 ; i <= k ; ++i){
		ans = (floor)(ans * x + 0.5); 
		if(ans > n - eps) return 1;	
	}
	return 0;
}
signed main(){
	cin >> n >> k, ans = n;
	cout << fixed << setprecision(10);
	if(n == 1){
		printf("0.5");
		return 0;
	}
	if(k > 10000){
		printf("1.5");
		return 0; 
	}
	if(k == 1){
		cout << n - 0.5;
		return 0; 
	}
	long double l = 1, r = min(n, (long double)1e10); 
	while(l <= r - eps && cnt <= 1000){
		if(check(mid)) ans = min(ans, mid), r = mid;
		else l = mid;
		++cnt;
	}
	cout << ans;
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 2ms
memory: 3680kb

input:

18 4

output:

2.1250000002

result:

ok found '2.1250000', expected '2.1250000', error '0.0000000'

Test #2:

score: 0
Accepted
time: 2ms
memory: 3716kb

input:

1 1

output:

0.5

result:

ok found '0.5000000', expected '0.5000000', error '0.0000000'

Test #3:

score: 0
Accepted
time: 2ms
memory: 3724kb

input:

1000000000000000000 1000000000000000000

output:

1.5

result:

ok found '1.5000000', expected '1.5000000', error '0.0000000'

Test #4:

score: 0
Accepted
time: 2ms
memory: 3728kb

input:

2 100000

output:

1.5

result:

ok found '1.5000000', expected '1.5000000', error '0.0000000'

Test #5:

score: 0
Accepted
time: 2ms
memory: 3612kb

input:

1 1000000000000000000

output:

0.5

result:

ok found '0.5000000', expected '0.5000000', error '0.0000000'

Test #6:

score: 0
Accepted
time: 2ms
memory: 3720kb

input:

1000000000000000000 1

output:

999999999999999999.5000000000

result:

ok found '1000000000000000000.0000000', expected '1000000000000000000.0000000', error '0.0000000'

Test #7:

score: 0
Accepted
time: 2ms
memory: 3732kb

input:

2 1000000000000000000

output:

1.5

result:

ok found '1.5000000', expected '1.5000000', error '0.0000000'

Test #8:

score: 0
Accepted
time: 2ms
memory: 3616kb

input:

1000000000000000000 2

output:

1000000000.0000000006

result:

ok found '1000000000.0000000', expected '1000000000.0000000', error '0.0000000'

Test #9:

score: 0
Accepted
time: 1ms
memory: 3880kb

input:

265714758284843011 6476356347841896

output:

1.5

result:

ok found '1.5000000', expected '1.5000000', error '0.0000000'

Test #10:

score: 0
Accepted
time: 1ms
memory: 3728kb

input:

266540997167959139 92

output:

1.5416666670

result:

ok found '1.5416667', expected '1.5416667', error '0.0000000'

Test #11:

score: 0
Accepted
time: 1ms
memory: 3616kb

input:

998169857863230070 46

output:

2.4740667100

result:

ok found '2.4740667', expected '2.4740667', error '0.0000000'

Test #12:

score: 0
Accepted
time: 2ms
memory: 3824kb

input:

762322967106512617 94

output:

1.5442883898

result:

ok found '1.5442884', expected '1.5442884', error '0.0000000'

Test #13:

score: 0
Accepted
time: 2ms
memory: 3684kb

input:

494087735053841727 1

output:

494087735053841726.5000000000

result:

ok found '494087735053841728.0000000', expected '494087735053841728.0000000', error '0.0000000'

Test #14:

score: 0
Accepted
time: 2ms
memory: 3716kb

input:

58564077538358873 97

output:

1.5000000001

result:

ok found '1.5000000', expected '1.5000000', error '0.0000000'

Test #15:

score: 0
Accepted
time: 1ms
memory: 3716kb

input:

518101003270379436 40

output:

2.7699947154

result:

ok found '2.7699947', expected '2.7699947', error '0.0000000'

Test #16:

score: 0
Accepted
time: 2ms
memory: 3808kb

input:

278796295010358752 12

output:

28.4697449086

result:

ok found '28.4697449', expected '28.4697449', error '0.0000000'

Test #17:

score: 0
Accepted
time: 2ms
memory: 3696kb

input:

679814304673935850 67

output:

1.8424368304

result:

ok found '1.8424368', expected '1.8424368', error '0.0000000'

Test #18:

score: 0
Accepted
time: 2ms
memory: 3808kb

input:

963457718519969787 22

output:

6.5473153713

result:

ok found '6.5473154', expected '6.5473154', error '0.0000000'

Test #19:

score: 0
Accepted
time: 2ms
memory: 3616kb

input:

267367244641009859 41

output:

2.6529506630

result:

ok found '2.6529507', expected '2.6529507', error '0.0000000'

Test #20:

score: 0
Accepted
time: 2ms
memory: 3684kb

input:

740983904691688417 65

output:

1.8775968195

result:

ok found '1.8775968', expected '1.8775968', error '0.0000000'

Test #21:

score: 0
Accepted
time: 2ms
memory: 3660kb

input:

941365965213552512 82

output:

1.6553168408

result:

ok found '1.6553168', expected '1.6553168', error '0.0000000'

Test #22:

score: 0
Accepted
time: 2ms
memory: 3744kb

input:

284337374294498000 38

output:

2.8722016497

result:

ok found '2.8722016', expected '2.8722016', error '0.0000000'

Test #23:

score: 0
Accepted
time: 2ms
memory: 3812kb

input:

812120465372795700 38

output:

2.9563154767

result:

ok found '2.9563155', expected '2.9563155', error '0.0000000'

Test #24:

score: 0
Accepted
time: 2ms
memory: 3688kb

input:

564561304973603673 7

output:

343.5000000001

result:

ok found '343.5000000', expected '343.5000000', error '0.0000000'

Test #25:

score: 0
Accepted
time: 2ms
memory: 3696kb

input:

333368798444245171 30

output:

3.8346128258

result:

ok found '3.8346128', expected '3.8346128', error '0.0000000'

Test #26:

score: 0
Accepted
time: 2ms
memory: 3736kb

input:

959976653971901732 69

output:

1.8170508008

result:

ok found '1.8170508', expected '1.8170508', error '0.0000000'

Test #27:

score: 0
Accepted
time: 2ms
memory: 3792kb

input:

268193483524125987 37

output:

2.9545682659

result:

ok found '2.9545683', expected '2.9545683', error '0.0000000'

Test #28:

score: 0
Accepted
time: 2ms
memory: 3700kb

input:

260425914665370955 71

output:

1.7529919829

result:

ok found '1.7529920', expected '1.7529920', error '0.0000000'

Test #29:

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

input:

897036930760783895 17

output:

11.4040000004

result:

ok found '11.4040000', expected '11.4040000', error '0.0000000'

Test #30:

score: 0
Accepted
time: 1ms
memory: 3688kb

input:

74587017830121569 24

output:

5.0515873020

result:

ok found '5.0515873', expected '5.0515873', error '0.0000000'

Test #31:

score: 0
Accepted
time: 2ms
memory: 3716kb

input:

565676857502199822 83

output:

1.6345079843

result:

ok found '1.6345080', expected '1.6345080', error '0.0000000'

Test #32:

score: 0
Accepted
time: 2ms
memory: 3716kb

input:

834393643531603718 27

output:

4.5955882045

result:

ok found '4.5955882', expected '4.5955882', error '0.0000000'

Test #33:

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

input:

611313338732907397 47

output:

2.3965517245

result:

ok found '2.3965517', expected '2.3965517', error '0.0000000'

Test #34:

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

input:

269019726702209411 91

output:

1.5491351188

result:

ok found '1.5491351', expected '1.5491351', error '0.0000000'

Test #35:

score: 0
Accepted
time: 1ms
memory: 3660kb

input:

779867924639053494 90

output:

1.5757741435

result:

ok found '1.5757741', expected '1.5757741', error '0.0000000'

Test #36:

score: 0
Accepted
time: 2ms
memory: 3788kb

input:

76079933162791087 6

output:

650.9352592715

result:

ok found '650.9352593', expected '650.9352593', error '0.0000000'

Test #37:

score: 0
Accepted
time: 1ms
memory: 3708kb

input:

864836661365745138 48

output:

2.3705488023

result:

ok found '2.3705488', expected '2.3705488', error '0.0000000'

Test #38:

score: 0
Accepted
time: 2ms
memory: 3880kb

input:

319233245336636649 83

output:

1.6225576147

result:

ok found '1.6225576', expected '1.6225576', error '0.0000000'

Test #39:

score: 0
Accepted
time: 2ms
memory: 3828kb

input:

880853945234827955 98

output:

1.5187481488

result:

ok found '1.5187481', expected '1.5187481', error '0.0000000'

Test #40:

score: 0
Accepted
time: 2ms
memory: 3716kb

input:

269845965585325539 86

output:

1.5902139714

result:

ok found '1.5902140', expected '1.5902140', error '0.0000000'

Test #41:

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

input:

299309934612736033 50

output:

2.2471614208

result:

ok found '2.2471614', expected '2.2471614', error '0.0000000'

Test #42:

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

input:

31750903004989766 46

output:

2.2892174425

result:

ok found '2.2892174', expected '2.2892174', error '0.0000000'

Test #43:

score: 0
Accepted
time: 1ms
memory: 3880kb

input:

878458341756144515 26

output:

4.8987502947

result:

ok found '4.8987503', expected '4.8987503', error '0.0000000'

Test #44:

score: 0
Accepted
time: 1ms
memory: 3732kb

input:

72789637466040772 32

output:

3.3778032958

result:

ok found '3.3778033', expected '3.3778033', error '0.0000000'

Test #45:

score: 0
Accepted
time: 1ms
memory: 3728kb

input:

270672213058376259 95

output:

1.5201065142

result:

ok found '1.5201065', expected '1.5201065', error '0.0000000'

Test #46:

score: 0
Accepted
time: 2ms
memory: 3672kb

input:

42123981441194380 57

output:

1.9542194611

result:

ok found '1.9542195', expected '1.9542195', error '0.0000000'

Test #47:

score: 0
Accepted
time: 2ms
memory: 3784kb

input:

423890230884993629 93

output:

1.5416856552

result:

ok found '1.5416857', expected '1.5416857', error '0.0000000'

Test #48:

score: 0
Accepted
time: 2ms
memory: 3828kb

input:

668707985291768083 4

output:

28596.3370297084

result:

ok found '28596.3370297', expected '28596.3370297', error '0.0000000'

Test #49:

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

input:

271498451941492387 52

output:

2.1686492625

result:

ok found '2.1686493', expected '2.1686493', error '0.0000000'

Test #50:

score: 0
Accepted
time: 2ms
memory: 3704kb

input:

561565987119909623 68

output:

1.8187500004

result:

ok found '1.8187500', expected '1.8187500', error '0.0000000'

Test #51:

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

input:

166464870954228340 74

output:

1.7081046567

result:

ok found '1.7081047', expected '1.7081047', error '0.0000000'

Test #52:

score: 0
Accepted
time: 2ms
memory: 3616kb

input:

272324690824608515 48

output:

2.3084215459

result:

ok found '2.3084215', expected '2.3084215', error '0.0000000'

Test #53:

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

input:

81007997093592161 28

output:

4.0188770572

result:

ok found '4.0188771', expected '4.0188771', error '0.0000000'

Test #54:

score: 0
Accepted
time: 1ms
memory: 3656kb

input:

273150934002691939 102

output:

1.5000000001

result:

ok found '1.5000000', expected '1.5000000', error '0.0000000'

Test #55:

score: 0
Accepted
time: 2ms
memory: 3612kb

input:

1000000000000000000 101

output:

1.5001950779

result:

ok found '1.5001951', expected '1.5001951', error '0.0000000'