比赛 CSP2023-J模拟赛 评测结果 WWWWWWWWWW
题目名称 复制题目 最终得分 0
用户昵称 UGFK 运行时间 0.403 s
代码语言 C++ 内存使用 28.15 MiB
提交时间 2023-10-18 20:26:20
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;

stack<int>s[305][305];
int n,m,dp[305][305][3];
char a[305][305];

int main(){
    freopen("copy.in","r",stdin);
    freopen("copy.out","w",stdout);
    cin>>n>>m;
    for(int i=1;i<=n;i++)
     for(int j=1;j<=m;j++)
	  cin>>a[i][j];
    cout<<0;

}