9.24 update: 更新简单题解#1 某种数学运算 import math def s(c): n = math.floor(math.sqrt(c + 0.75) - 0.5) s = c - n ** 2 - n r = 2 * n if s > n: r += 1 return r print(s(int(input()))) 本地计算结果,发现呈现 [0, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 8 ...] 的关系,推公式按照 c 反推 n 即可。#...