编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#68664 #1007. G. 兼济天下 Wrong Answer 0 2 ms 256 K C++ / 316 B 该起什么名字 2022-04-04 11:03:06
显示原始代码
#include <bits/stdc++.h>
using namespace std;
int main() {
    std::ios::sync_with_stdio(false);
    int T;
    cin >> T;
    while (T--) {
        int n, m;
        cin >> n >> m;
        double ans = 0;
        ans = m * 1.0 / (n - 1);
        ans = (ceil(ans) - ans) * (n - 2);
        if (ans > 0)
            printf("%.6f", ans);
        else
            cout << "CSFNB";
        cout << endl;
    }
    return 0;
}
子任务 #1
Wrong Answer
得分:0
测试点 #1
Wrong Answer
得分:0
用时:2 ms
内存:256 KiB

输入文件(1.in

10
3 17
4 21
2 0
2 1000000000
1000000000 999999999
1000000000 1000000000
1000000000 999999998
154236
<37 bytes omitted>

答案文件(1.ans

0.500000
CSFNB!
CSFNB!
CSFNB!
CSFNB!
999999997.000000
1.000000
9737972.368635
158.314655
99
<16 bytes omitted>

用户输出


CSFNB
CSFNB
CSFNB
CSFNB





0.500000999999997.0000001.0000009737972.368635158.314655999999997.000000

Special Judge 信息

Files user_out and answer differ

系统信息

Exited with return code 0