| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 9239 | ElaineTang | 汽水瓶 | C++ | Time Limit Exceeded | 0 | 1000 MS | 268 KB | 142 | 2025-04-09 20:58:58 |
#include<bits/stdc++.h> using namespace std; int main() { int n=1; while(1) { cin>>n; if(n/2>0) { cout<<n/2<<endl; } } }