| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 83377 | sh25_shengmy | 水池何时干枯 | C++ | Accepted | 0 MS | 244 KB | 217 | 2026-01-25 19:30:52 |
#include<iostream> using namespace std; const float i=3-0.05; int main(){ float n; cin>>n; int days=0; while(n>0){ n=n-i; days=days+1; } cout<<days; return 0; }