Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
73684 陈昱玮 递增 C++ 编译错误 0 0 MS 0 KB 379 2023-04-08 11:35:02

Tests(0/0):


#include<bits/stdc++.h> using namespace std; int t, n, a[10001]; int main(){ cin >> t; for(int i = 1; i <= t; i++){ cin >> n; for(int j = 1; j <= n; j++){ cin >> a[j]; } for(int j = 2; j <= n; j++){ if(a[j] <= a[j - 1]){ a[j] = a[j - 1] + 1; sum++; } } cout << "Case #" << i <<":" << endl; cout << sum << endl; sum = 0; } }


测评信息: