This commit is contained in:
Zengtudor 2024-08-03 16:09:49 +08:00
parent d9c82a9e66
commit 85339f6bbe
4 changed files with 17 additions and 0 deletions

BIN
day2/P7514/P7514 Executable file

Binary file not shown.

17
day2/P7514/P7514.cpp Normal file
View File

@ -0,0 +1,17 @@
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int MAX_N = 1e6+6;
int n,m,a[MAX_N],b[MAX_N];
signed main(){
cin>>n>>m;
for (int i=1; i<=n; i++) {
cin>>a[i];
}
for (int i=1; i<=n; i++) {
cin>>b[i];
}
}

BIN
day2/P7514/chat Executable file

Binary file not shown.

0
day2/P7514/chat.cpp Normal file
View File