QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#501083#5152. Circular Caramel CookieInk_baiTL 0ms3824kbC++20734b2024-08-02 13:49:202024-08-02 13:49:21

Judging History

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

  • [2024-08-02 13:49:21]
  • 评测
  • 测评结果:TL
  • 用时:0ms
  • 内存:3824kb
  • [2024-08-02 13:49:20]
  • 提交

answer

#include <bits/stdc++.h>
#define int long long
using namespace std;

signed main() {
    int n;
    cin >> n;
    if(n % 4 == 0) n += 1;
    long double l = 1.4142135623731, r = n;
    while (l + 1e-9 < r) {
        long double m = (l + r) / 2;
        // cout << l << ' ' << r << ' ' << m << endl;
        int sum = 0;
        for(int i = 1; i <= m; i++) {
            for(int j = 1; j <= m; j++) {
                if(i*i + j*j <= m*m) {
                    sum++;
                }
            }
        }
        // cout << sum << endl;
        if(sum * 4 >= n) {
            r = m;
        } else {
            l = m;
        }
    }
    cout << fixed << setprecision(10) << l << endl;
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

11

output:

2.2360679770

result:

ok found '2.2360680', expected '2.2360680', error '0.0000000'

Test #2:

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

input:

59

output:

4.9999999994

result:

ok found '5.0000000', expected '5.0000000', error '0.0000000'

Test #3:

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

input:

1

output:

1.4142135624

result:

ok found '1.4142136', expected '1.4142136', error '0.0000000'

Test #4:

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

input:

2

output:

1.4142135624

result:

ok found '1.4142136', expected '1.4142136', error '0.0000000'

Test #5:

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

input:

3

output:

1.4142135624

result:

ok found '1.4142136', expected '1.4142136', error '0.0000000'

Test #6:

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

input:

4

output:

2.2360679775

result:

ok found '2.2360680', expected '2.2360680', error '0.0000000'

Test #7:

score: -100
Time Limit Exceeded

input:

1000000000

output:


result: