| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 81193 | sh25_zhuwy | 水池何时干枯 | C++ | Accepted | 0 MS | 248 KB | 193 | 2026-01-04 15:41:20 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,i=0; cin>>n; double m=n; while(m>0){ m=m-2.95; i=i+1; } cout<<i; return 0;}