| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151882 | 万麟峰 | 18陶陶摘苹果 | C++ | Runtime Error | 0 MS | 264 KB | 226 | 2026-04-19 11:44:55 |
#include<bits/stdc++.h> using namespace std; int main(){ int a[10],x,s=0; for(int i=1;i<=10;i++){ cin>>a[i]; } cin>>x; x+=30; for(int i=1;i<=10;i++){ if(x>=a[i]){ s++; } } cout<<s; return 0; }
*** stack smashing detected ***: ./Main terminated