Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
118865 陈家宝 打家劫舍 C++ 通过 100 0 MS 240 KB 279 2024-01-02 13:05:56

Tests(4/4):


#include<bits/stdc++.h> using namespace std; int n,x,y,a[1001]; int main() { cin>>n; for(int i=1;i<=n;i++) cin>>a[i]; for(int i=1;i<=n;i++){ if(i%2){ x+=a[i]; x=max(x,y); } else{ y+=a[i]; y=max(x,y); } } cout<<max(x,y); return 0; }


测评信息: