| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 75370 | sh25_zhuwy | 汉堡吃鱼 | C++ | Accepted | 0 MS | 244 KB | 213 | 2025-12-05 21:35:56 |
#include <bits/stdc++.h> using namespace std; int main() { int n,sum=10000000; cin>>n; int a[n]; for (int i=0;i<n;i++) { cin>>a[i]; if(a[i]<sum) sum=a[i]; } cout<<sum; return 0; }