| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 81895 | sh25_shenpy | 百万富翁问题 | C++ | Accepted | 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; }