| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 73811 | sh25_shenpy | 试卷-2024 | C++ | Accepted | 0 MS | 240 KB | 143 | 2025-11-16 16:46:28 |
#include <iostream> using namespace std; int main() { int x,y,w; cin>>x>>y; w=int(1.0*x/y)+1; cout<<w; return 0; }