QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#325209#5610. It's About Timetom0727WA 1ms3852kbC++201.1kb2024-02-11 05:46:522024-02-11 05:46:53

Judging History

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

  • [2024-02-11 05:46:53]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3852kb
  • [2024-02-11 05:46:52]
  • 提交

answer

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

#define pb push_back
typedef pair<int, int> pii;

const int maxn = 111;
const double pi = 3.1415926535;

int r, s, h, d, a3, a2, a1;
double y, l, f, est, L, mn = 1e9;

void check_n1(int n3, int n2, int n1) {
    f = fabs(n3 * (y-d));
    est = n3/n1 - n3/n2 + 1;
    L = fabs(f - est);
    if (L<mn) {
        mn = L;
        a3 = n3;
        a2 = n2;
        a1 = n1;
    }
    // if (n3==400 && n2==100 && n1==4) {
    //     printf("y=%lf, d=%d, f=%lf, est=%lf, L=%lf, mn=%lf\n", y, d, f, est, L, mn);
    // }
}
void check_n2(int n3, int n2) {
    for (int n1=1;n1*n1<=n2;n1++)
        if (n2%n1==0) {
            check_n1(n3, n2, n1);
            if (n1!=1 && n1*n1!=n2)
                check_n1(n3, n2, n2/n1);
        }
}

int main() {
    scanf("%d%d%d",&r,&s,&h);
    l = 2*pi*r;
    y = l / s / h;
    d = round(y);

    for (int n3=4;n3<=1000;n3++) {
        for (int n2=2;n2*n2<=n3;n2++)
            if (n3%n2==0) {
                check_n2(n3, n2);
                if (n2*n2!=n3) check_n2(n3, n3/n2);
            }
    }
    // printf("%lf\n", mn);
    printf("%d %d %d\n", a1, a2 ,a3);

    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3796kb

input:

92998938 66660 24

output:

4 100 400

result:

ok Output is valid!

Test #2:

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

input:

92998938 66660 25

output:

2 6 30

result:

ok Output is valid!

Test #3:

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

input:

1 1 1

output:

3 15 60

result:

ok Output is valid!

Test #4:

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

input:

1000000000 1000000 1000

output:

3 15 60

result:

ok Output is valid!

Test #5:

score: -100
Wrong Answer
time: 1ms
memory: 3848kb

input:

1000000000 1 1

output:

0 0 0

result:

wrong answer Integer parameter [name=n1] equals to 0, violates the range [1, 1000]