| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134144 | 徐英杰 | 短信计费 | C++ | Accepted | 1 MS | 272 KB | 292 | 2025-10-25 20:15:25 |
#include <iostream> using namespace std; int main() { int n; cin>>n; int a; double s = 0; for (int i = 1;i <= n;i++) { cin>>a; while (a > 0) { s += 0.1; a -= 70; } } printf("%.1lf",s); return 0; }