| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 81895 | sh25_shenpy | 百万富翁问题 | C++ | 通过 | 0 MS | 240 KB | 227 | 2026-01-09 15:24:51 |
#include <iostream> using namespace std; int main() { double s=0; int j=1; for(int i=1;i<=30;++i){ s+=1.0*j/100; j*=2; } cout<<10737418<<" "; cout<<30*100000; return 0; }