| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149015 | 赖泓宇 | 03圆的面积 | C++ | Accepted | 0 MS | 268 KB | 274 | 2026-03-06 18:20:40 |
#include <iostream> using namespace std; int main() { const double PI = 3.1415926; cout << 1 * 1 * PI << endl; cout << 3 * 3 * PI << endl; cout << 5 * 5 * PI << endl; cout << 7 * 7 * PI << endl; cout << 9 * 9 * PI << endl; return 0; }