This commit is contained in:
Zengtudor 2025-08-14 10:11:27 +08:00
parent fa55095f9d
commit 93cdd285ff

28
src/8/12/P9754.cpp Normal file
View File

@ -0,0 +1,28 @@
#include <cstdint>
#include <iostream>
#include <map>
#include <string>
using ll = int64_t;
ll n;
std::map<std::string, ll> m = {
};
int main(){
std::cin>>n;
for(ll i=1;i<=n;i++){
ll op;
std::cin>>op;
if(op==1){
std::string s;
std::cin>>s;
ll k;
std::cin>>k;
for(ll j=1;j<=k;j++){
}
}
}
}