Codeforces Round #790 (Div. 4)
D
比赛时:
#include<bits/stdc++.h>
using namespace std;
int ans[210][210];
int mann=0,temp=0;
int zz=4000000;
//int z1=0,z2=0,z3=0,z4=0;
void d1(int a,int b){
if(ans[a][b]==0) return ;
temp+=ans[a][b];
//z1++;
d1(a+1,b+1);
}
void d2(int a,int b){
原创
2022-05-12 09:58:13 ·
141 阅读 ·
0 评论