前缀和
#include <iostream>
using namespace std;
const int N100010;
long long a[N];
int cnt[N];
int main(){int n, m;cnt[0] 1;cin >> n >> m;long long res 0;for(int i 1; i < n; i){scanf("%d", &a[i]);a[i] a[i-1];res cnt…
问题:gitlab开启了双因素认证导致无法正常使用
如进行了 OAuth configuration
在进行git操作时如下提示
remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access…