Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
39534 lihaocheng 救援 C++ 通过 1 MS 248 KB 320 2024-02-02 20:02:09

Tests(1/1):


#include <iostream> #include <cmath> using namespace std; int main(){ int n, m; double x, y, s, sum = 0; cin >> n; for (int i = 1; i <= n; i++) { cin >> x >> y >> m; s = sqrt(x * x + y * y); sum += s / 25 + m * 1.5; } cout << ceil(sum); return 0; }


测评信息: