| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149239 | 顾文博 | 22相差2的数的个数 | C++ | Wrong Answer | 0 MS | 276 KB | 601 | 2026-03-08 15:00:03 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n,a[101],s=0,max=-1; cin>>n; for(int i=1;i<=n;i++){ cin>>a[i]; } for(int i=1;i<=n;i++){ for(int j=i+1;j<=n;j++){ if(a[i]-2==a[j]&&a[j]!=a[j+1]&&s>max){ s=j-i+1; max=s; break; } } } cout<<s; return 0; }
------Input------
10 80 79 78 77 65 55 54 54 53 49
------Answer-----
4
------Your output-----
3