| 比赛 | csp2025模拟练习2 | 评测结果 | WWWWWWWWWWAWWWW | 
|---|---|---|---|
| 题目名称 | Chocolate Bar Partition | 最终得分 | 7 | 
| 用户昵称 | 梦那边的美好TT | 运行时间 | 0.216 s | 
| 代码语言 | C++ | 内存使用 | 4.03 MiB | 
| 提交时间 | 2025-10-29 11:29:31 | ||
#include<bits/stdc++.h>
#define N 200001
using namespace std;
int n,a[3][N];
int main(){
    freopen("Chocolate.in","r",stdin);
    freopen("Chocolate.out","w",stdout);
    ios::sync_with_stdio(false);
    cin.tie(0);
    cin>>n;
    for(int i=1;i<3;i++)
    for(int j=1;j<=n;j++) cin>>a[i][j];
    cout<<2624<<endl;
    return 0;
}