编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#24370 #1007. G. 兼济天下 Wrong Answer 0 58 ms 26324 K Python 3 / 262 B 电类932-蒙祎昊 2020-04-25 10:35:41
n=int(input())
b=[]
for i in range(n):
    num=int(input())
    count=int(input())
    x1=count/(n-1)
    x2=int(count/(n-1))+1
    get=(x2-x1)*(n-1)
    b.append(get)
for each in b:
    if each>0:
        print("%.6f"%each)
    else:
        print('CSFNB!')



子任务 #1
Wrong Answer
得分:0
测试点 #1
Wrong Answer
得分:0
用时:58 ms
内存:26324 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>

标准错误流

Traceback (most recent call last):
  File "/sandbox/2/a.py", line 4, in <module>
    num=int(input())
ValueError: invalid literal for int() with base 10: '3 17'

Special Judge 信息

Files user_out and answer differ

系统信息

Exited with return code 1