4446: 【Python进阶】KNN算法之距离计算
Memory Limit:128 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:29
Solved:21
Description
已知新数据的特征值是m,请计算他跟之前收集的n个数据的距离。
代码提示:
m = int(input()) n = int(input()) for i in __________: a = ___________ if a > m: c = _______ else: c = _______ print(c)
Input
第一行,一个整数m;第二行,一个整数n;接下来n行,每行一个整数。
Output
输出n行,每一行表示新数据与各个样本之间的距离。
Sample Input Copy
10
3
5
10
20
Sample Output Copy
5
0
10